Skip to content

Files

Latest commit

Zanger67/leetcodeZanger67/leetcode
Zanger67/leetcode
and
Zanger67/leetcode
Mar 16, 2025
03398f8 · Mar 16, 2025

History

History
34 lines (24 loc) · 651 Bytes

_1068. Product Sales Analysis I.md

File metadata and controls

34 lines (24 loc) · 651 Bytes

All prompts are owned by LeetCode. To view the prompt, click the title link above.

Back to top


First completed : May 22, 2024

Last updated : July 01, 2024


Related Topics : Database

Acceptance Rate : 84.19 %


Solutions

SQL

SELECT
    product_name,
    year,
    price
FROM 
    Sales s LEFT JOIN Product p ON s.product_id = p.product_id;