题解 | #返回 2020 年 1 月订单号和订单日期#
返回 2020 年 1 月的所有订单的订单号和订单日期
https://www.nowcoder.com/practice/c7734db33854477aa94ae238a3390435
select order_num, order_date from Orders where date_format(order_date,'%Y-%m')='2020-01' #where order_date like '2020-01%' order by order_date