True/False
The following query totals sales in state= 'MA' for each salesperson.
Select salesperson_id, sum(sales)
from salesperson
group by salesperson_id
having state = 'MA';
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q38: INSERT INTO is an example of _
Q54: What were the original purposes of SQL,
Q64: _ is a set of commands used
Q67: The ORDER BY clause sorts the final
Q84: SQL is both an American and international
Q85: The SQL command _ adds one or
Q90: To eliminate duplicate rows in a query,
Q91: What result set is returned from the
Q92: What does the following SQL statement do?
Q94: What does the following SQL statement do?