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

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

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

相关推荐

是感谢信收割机:二笔?
投递小米集团等公司10个岗位
点赞 评论 收藏
分享
头像
10-16 09:58
已编辑
门头沟学院 Java
点赞 评论 收藏
分享
昨天 10:52
蚌埠坦克学院 C++
金山干嘛,挂了又发笔试,复活赛还是KPI
小苏_秋招版:我投了三个base,做了两次笔试然后复筛都挂了,今天他还发笔试,有点离谱了
投递金山WPS等公司10个岗位 > 软件开发2024笔面经 牛客创作赏金赛
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务