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