Get month and year from a datetime in SQL Server 2005

后端 未结 20 1454
[愿得一人]
[愿得一人] 2020-12-12 15:39

I need the month+year from the datetime in SQL Server like \'Jan 2008\'. I\'m grouping the query by month, year. I\'ve searched and found functions like datepart, convert, e

20条回答
  •  时光说笑
    2020-12-12 16:24

    Use:

    select datepart(mm,getdate())  --to get month value
    select datename(mm,getdate())  --to get name of month
    

提交回复
热议问题