gpt4 book ai didi

sql - 在 SQL 中获取该月的最后一天

转载 作者:行者123 更新时间:2023-12-01 18:06:18 26 4
gpt4 key购买 nike

我需要获取 SQL 中以日期形式给出的月份的最后一天。如果我有该月的第一天,我可以这样做:

DATEADD(DAY, DATEADD(MONTH,'2009-05-01',1), -1)

但是有谁知道如何概括它,以便我可以找到任何给定日期的该月的最后一天?

最佳答案

从 SQL Server 2012 中,您可以使用 EOMONTH功能。

Returns the last day of the month that contains the specified date, with an optional offset.

语法

EOMONTH ( start_date [, month_to_add ] ) 

How ... I can find the last day of the month for any given date?

SELECT EOMONTH(@SomeGivenDate)

关于sql - 在 SQL 中获取该月的最后一天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1051488/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com