#不难
select user_id , min(date) as first_buy_date,count(1) as cnt
from order_info
where product_name in ('C++','Python','Java')
and date >='2025-10-15'
and status = 'completed'
group by user_id
having count(1) >=2
order by 1