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

思路:题目不难,就是where条件有三个