SELECT user_id from order_info
where status='completed' and product_name in('java','C++','PYTHON')
and date>'2025-10-15'
GROUP by user_id
HAVING COUNT(product_name)>1
ORDER by user_id