题解 | #牛客的课程订单分析(三)#

牛客的课程订单分析(三)

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;


全部评论
借鉴了一下别人的经验用having 少做1个子查询 select * from order_info where user_id in ( select user_id from order_info where product_name in ('C++','Java','Python') and status='completed' and date>'2025-10-15' group by user_id having count(*)>=2 ) and product_name in ('C++','Java','Python') and status='completed' and date>'2025-10-15' order by id;
点赞 回复 分享
发布于 2021-10-15 12:04

相关推荐

11-06 09:58
西京学院 Java
有友友了解菜鸟怎么样呀,比较想去杭州,会裁应届嘛
努力的飞舞:菜鸟只给p4?
投递菜鸟集团等公司10个岗位 >
点赞 评论 收藏
分享
勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务