coding_test/SQL 문제
[LeetCode] 1068. Product Sales Analysis I (JOIN)
aeightchill
2025. 2. 7. 22:37
728x90
< 문제 >
[SQL50] 1068. Product Sales Analysis I (JOIN)


< 풀이 >
SELECT B.product_name, A.year, A.price
FROM Sales A LEFT JOIN Product B ON A.product_id = B.product_id;
728x90