Multiple Choice
Examine the Sale and Cash Receipt relational tables and the corresponding query solution below. Which of the following SQL query statements applied to those tables will result in the depicted solution?
A) SELECT CustomerID, Sum(Amount) FROM Sale;
B) SELECT CustomerID, Sum(Amount) FROM Sale GROUP BY CustomerID;
C) SELECT CustomerID, AmountFROM Sale;
D) SELECT CustomerID, Sum(Amount) FROM SaleWHERE CustomerID unique;
E) SELECT CustomerID, AmountFROM Sale GROUP BY Amount;
Correct Answer:

Verified
Correct Answer:
Verified
Q1: A full outer join will show records
Q3: Examine the relational tables depicted below. A
Q4: The answer to a query connecting two
Q5: Which operation would you use to total
Q6: Right outer join queries can only be
Q7: Every SQL statement begins with the word
Q8: Ad hoc querying is done primarily by
Q9: A parameter query requires a user to
Q10: In Microsoft Access Query By Example, the
Q11: Given the following tables, what are the