Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select
case DatePart(Month, @DATE)
when 1 then 'January'
when 2 then 'February'
...
when 6 then 'June'
...
end + ' ' + convert(char(4),datepart(year, @DATE))
select date, function_return
from table
order by date
select DateCol, (DATENAME(month, DateCol) + ' ' + CAST(Year(DateCol) as CHAR(4))) as MonthYear
from MyTable
order by DateCol