题解 | #牛客的课程订单分析(三)#
牛客的课程订单分析(三)
http://www.nowcoder.com/practice/4ae8cff2505f4d7cb68fb0ec7cf80c57
第一步 求订单次数大于等于2的user_id
第二步 把求得user_id 当做where筛选条件
第三步 最后别忘记加上产品名字,订单状态,日期,因为你第二步筛选只固定了user_id
select *
from order_info
where user_id in (
select order_sum.user_id
from (
# 求次数大于2的user_id
select user_id,count(date) as ct
from order_info
where product_name in ('C++','Java','Python')
and status='completed'
and date>'2025-10-15'
group by user_id
) as order_sum
where order_sum.ct>=2
)
# 重复筛选条件
and product_name in ('C++','Java','Python')
and status='completed'
and date>'2025-10-15'
order by id;