其他分享
首页 > 其他分享> > 每日一题-82(列出指定时间段内所有的下单产品)

每日一题-82(列出指定时间段内所有的下单产品)

作者:互联网

题82:

根据下表写一个 SQL 语句,要求获取在 2020 年 2 月份下单的数量不少于 100 的产品的名字和数目。
在这里插入图片描述
其中:

解题思路:
(1)根据p.product_id分组;
(2)判断日期在2020年2月;
(3)连接两表即可。

select p.product_name,sum(o.unit) unit
from Products p
left join Orders o on p.product_id = o.product_id
where date_format(o.order_date ,'%Y-%m') = '2020-02' 
group by p.product_id
having unit >= 100 ;

标签:product,该表,2020,下单,82,Products,一题,id,unit
来源: https://blog.csdn.net/Txixi/article/details/122661615