Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 697 Bytes

183_product_sales_analysis_ii.md

File metadata and controls

43 lines (29 loc) · 697 Bytes

SQL Everyday #183

Product Sales Analysis II

Site: LeetCode
Difficulty per Site: Easy

Problem

Write a solution that reports the total quantity sold for every product id.

Return the resulting table in any order. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
    product_id
    ,SUM(quantity) AS total_quantity
FROM Sales
GROUP BY product_id
ORDER BY product_id ASC
;

Site Solution

-- LeetCode Solution 
-- Site solution essentially the same

Notes

TBD

NB

TBD

Go to Index
Go to Overview