SQL Query to find the last day of the month

前端 未结 14 1722
太阳男子
太阳男子 2020-11-27 04:40

I need to find the last day of a month in the following format:

\"2013-05-31 00:00:00:000\"

Anybody please help out.

14条回答
  •  無奈伤痛
    2020-11-27 05:26

    dateadd(month,1+datediff(month,0,getdate()),-1)
    

    To check run:

    print dateadd(month,1+datediff(month,0,@date),-1)
    

提交回复
热议问题