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 |
What SQL query allows you to retrieve the total number of items sold for each product ?
Edit
5
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about SQL