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

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

http://www.nowcoder.com/practice/c5736983c322483e9f269dd23bdf2f6f

with t as (select * from order_info
where date>'2025-10-15' and status='completed' and product_name in('Python','Java','C++'))
select t1.id,is_group_buy,client.name client_name
from (select * from t where user_id in (select user_id from t group by user_id having count(*)>1)) t1
left join client
on t1.client_id=client.id
order by t1.id;

全部评论
with t as (select * from order_info where date>'2025-10-15' and status='completed' and product_name in('Python','Java','C++')) select t3.id,is_group_buy,client.name client_name from (select * from t t1 where (select count(*) from t t2 where t1.user_id=t2.user_id)>1) t3 left join client on t3.client_id=client.id order by t3.id;
点赞 回复
分享
发布于 2021-04-16 13:45

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务