Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 840 Bytes

119_product_sales_analysis_iii.md

File metadata and controls

50 lines (36 loc) · 840 Bytes

SQL Everyday #119

Product Sales Analysis III

Site: LeetCode
Difficulty per Site: Medium

Problem

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

-- 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
)
;

Site Solution

-- LeetCode Solution 
-- Site solution essentially the same.

Notes

TODO

NB

TBD

Go to Index
Go to Overview