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

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

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

相关推荐

暴走萝莉莉:这是社招场吧,作为HR说个实话:这个维护关系的意思是要有政府资源,在曾经的工作中通过人脉资源拿下过大订单的意思。这个有相关管理经验,意思也是真的要有同岗位经验。应酬什么的对于业务成交来说就算不乐意也是常态,就是要求说话好听情商高,酒量好。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务