<数据库> Leetcode1511. 消费者下单频率

2022/3/1 2:22:35

本文主要是介绍<数据库> Leetcode1511. 消费者下单频率,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

写一个 SQL 查询,报告在 2020 年 6 月和 7 月 每个月至少花费 $100 的客户的 customer_id 和 customer_name 。

以任意顺序返回结果表.

查询结果格式如下例所示。

 

# 2020 年 6 月和 7 月 
# 每个月至少花费 $100 的客户的 customer_id 和 customer_name 
select c.customer_id,c.name
from customers c
join orders o on o.customer_id=c.customer_id
join product p on p.product_id=o.product_id
where year(order_date)=2020
group by c.customer_id
having sum(case when month(order_date)=6 then p.price*o.quantity else 0 end) >=100
and sum(case when month(order_date)=7 then p.price*o.quantity else 0 end) >=100

 



这篇关于<数据库> Leetcode1511. 消费者下单频率的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程