Skip to content

Commit

Permalink
Time: 1314 ms (90.42%) | Memory: 0B (100.00%) - LeetSync
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimple-01 committed Jun 14, 2024
1 parent 3bfa042 commit 406629f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions 1153-product-sales-analysis-i/product-sales-analysis-i.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Write your MySQL query statement below
select product_name, year,price
from Sales as s
left join Product as p
on s.product_id = p.product_id;

0 comments on commit 406629f

Please sign in to comment.