题解 | #牛客的课程订单分析(一)#
select * from order_info where date > '2025-10-15' and product_name in ('C++','Python','Java') and status = 'completed' order by id asc
使用AND连接判断条件
select * from order_info where date > '2025-10-15' and product_name in ('C++','Python','Java') and status = 'completed' order by id asc
使用AND连接判断条件
相关推荐