I have a query to show total orders by month based on a date column. May I know how to append year to the Month column?
select DATENAME(MONTH,DATEADD(MONTH, MONTH(<column>) - 1, 0)) AS Month,
count(*) AS Total_Request
from <table>
group by month(<column>)