select order_num,order_date
from Orders
where year(order_date)=2020 and  month(order_date)=1
order by order_date

知识点:主要就是日期函数的使用