这题主要考察的是where语法,涉及多个条件,我们使用and连接
首先是日期在某日之后,使用的是date > 2025-10-15,
状态为completed,使用and连接该条件
对于多个订单类别使用in关键字,表示该字段值属于()集合中
最后根据id排序使用order by id ASC
select * from order_info
where date > '2025-10-15'
and status = 'completed'
and product_name in ('Java','C++','Python')
order by id asc