知识点

  1. 这题就是筛选条件满足就行

代码

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