Question from the SQL - Fundamentals test

Write a SQL query to get the total sales quantity for each product.

Easy

Given the following 'sales' table:

| sale_id | product_id | sale_date  | quantity |
|---------|------------|------------|----------|
| 1       | 1          | 2023-01-01 | 5        |
| 2       | 2          | 2023-01-02 | 8        |
| 3       | 1          | 2023-01-03 | 3        |

Which SQL query retrieves the total sales quantity for each product?

Author: Vincent CotroStatus: PublishedQuestion passed 1328 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!