思路如下:
1.本题思路仍然简单,使用子查询查找满足条件的user_id
2.在外层查询中查找user_id 属于子查询中的user_id 这样就自然满足了 次数>2
3.外层查询中仍然需要限定时间状态和名字三个条件

select * from order_info
where user_id in 
(select user_id from order_info where date>'2025-10-15' and 
status='completed' and product_name !='JS' group by user_id 
having count(id)>=2)
and date>'2025-10-15' and 
status='completed' and product_name !='JS'