Login
Remember
Register
Ask a Question
What is the Query in SQL to Get Month Name
0
votes
asked
Jan 7, 2021
in
Sql
by
SakshiSharma
What is the Query in SQL to Get Month Name
#sql-query
#get-month-name
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 7, 2021
by
SakshiSharma
Below is the syntax for getting the month name in SQL Query
SELECT DATENAME(MONTH, GETDATE())
...