select id,user_id,product_name,status,client_id,date
from order_info
where year(date) >= 2025
and month(date) >= 10
and day(date)>15
and product_name in ('C++','Java','Python')
and status = 'completed'
ORDER BY id