SQL Query to find the last day of the month

前端 未结 14 1741
太阳男子
太阳男子 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:28

    Select DATEADD(DAY, -(DAY(DATEADD(MONTH, 1, GETDATE()))),DATEADD(MONTH, 1, GETDATE()))
    

    This works great in T-sql ..

    Replace the GETDATE() of the query with your column name .

提交回复
热议问题