SQL
leetcode 1068. Product Sales Analysis I
무적김두칠
2023. 4. 14. 11:38
https://leetcode.com/problems/product-sales-analysis-i/description/
Product Sales Analysis I - LeetCode
Can you solve this real interview question? Product Sales Analysis I - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
1
2
3
4
5
|
# Write your MySQL query statement below
select p.product_name , s.year , s.price
from Sales s
join Product p
on s.product_id = p.product_id
|
cs |
반응형