Site: LeetCode
Difficulty per Site: Medium
Write a solution to select the product id
, year
, quantity
, and price
for the first year
of every product sold.
Return the result table in any order. [Full Description]
-- Submitted Solution
SELECT
product_id
,year as first_year
,quantity
,price
FROM Sales
WHERE (product_id, year) IN (
SELECT
product_id
,MIN(year) as year
FROM Sales
GROUP BY product_id
)
;
-- LeetCode Solution
-- Site solution essentially the same.
TODO
TBD