0 votes
in Sql by
What is the Query in SQL to Get Month Name

1 Answer

0 votes
by

Below is the syntax for getting the month name in SQL Query

SELECT DATENAME(MONTH, GETDATE())

...