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 |
반응형
'SQL' 카테고리의 다른 글
leetcode 1934. Confirmation Rate (0) | 2023.04.21 |
---|---|
leetcode 1661. Average Time of Process per Machine (0) | 2023.04.14 |
leetcode 1280. Students and Examinations (0) | 2023.04.12 |
leetcode 577. Employee Bonus (0) | 2023.04.12 |
leetcode 1327. List the Products Ordered in a Period (0) | 2023.04.08 |
댓글