LeetCode-- 1070. 产品销售分析 III

it2025-08-10  8

select product_id, year first_year, quantity, price from sales where (product_id, year) in (select product_id, min(year) from sales group by product_id)
最新回复(0)