How to get week number of the month from the date in sql server 2008

后端 未结 22 1917
没有蜡笔的小新
没有蜡笔的小新 2020-11-27 15:52

In SQL Statement in microsoft sql server, there is a built-in function to get week number but it is the week of the year.

Select DatePart(week, \'2012/11/30\         


        
22条回答
  •  遥遥无期
    2020-11-27 16:31

    There is an inbuilt option to get the week number of the year

    **select datepart(week,getdate())**
    

提交回复
热议问题