내일배움캠프/사전캠프 퀘스트

[내일배움캠프]_사전캠 SQL 퀘스트 5일차

cork-7 2024. 12. 4. 22:50

12/3

44)
select o.id, p.name 
from products p join orders o on p.id=o.product_id 

45)
select p.id,
       sum(p.price*o.quantity) as all_sales
from products p join orders o on p.id=o.product_id 
group by 1
order by 2 desc
limit 1

46)
select p.id,
       sum(o.quantity) 
from products p join orders o on p.id=o.product_id 
group by p.id 

47)
select p.name 
from products p join orders o on p.id=o.product_id 
where o.order_date >='2023-03-03'
- order_date가 문자열이라 ' ' 를 작성해야 제대로 출력됨

48)
select p.name,
       o.quantity 
from products p join orders o on p.id=o.product_id 
order by 2 desc
limit 1

49)
select p.id,
       avg(o.quantity) avg_quantity
from products p join orders o on p.id=o.product_id 
group by 1
order by 1

50)
select p.name
from products p left join orders o on p.id=o.product_id 
where o.id is null