40. Product Sales Analysis III
https://leetcode.com/problems/product-sales-analysis-iii/
Write a solution to select the product id, year, quantity, and price for the first year of every product sold. Return the resulting table in any order.
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)
주어진 테이블 모두를 사용할 필요 없음!! 문제와 조건에 맞는 테이블만 사용하면됨! 습관적으로 테이블이 여러 개 있다고 자연스럽게 Join을 했지만 그럴 필요는 없다! + where 절에서 조건을 걸 때 ()를 통해 조건은 하나가 아닌 여러개를 동시에 적용할 수 있다! (매번 잊어버리는 활용법..!)