select *
from order_info
where status = 'completed'
and product_name in ('C++','Java','Python')
and date >= '2025-10-15'
order by id;