TSQL 只需要返回月份的最后一天,如何删除年份、月份和日期?时间?
我正在 T-SQL 中编写一个函数,无论日期输入如何,都会返回该月的最后一天。
这是我的代码:
Alter Function dbo.FN_Get_Last_Day_in_Month2
(@FN_InputDt Datetime)
Returns smalldatetime
as
Begin
Declare @Result smalldatetime
Set @Result =
case when @FN_InputDt <> 01-01-1900 then
DATEADD(m, DATEDIFF(M, 0,@FN_InputDt)+1, -1)
Else 0 End
Return @Result
End
代码无法正常工作,这是显示不良行为的测试:
SELECT dbo.fn_get_last_day_in_month (07-05-2010)
这是(不正确的)结果:
2010-07-31 00:00:00
I am writing a function in T-SQL returning the last day of the month regardless of the date input.
Here is my code:
Alter Function dbo.FN_Get_Last_Day_in_Month2
(@FN_InputDt Datetime)
Returns smalldatetime
as
Begin
Declare @Result smalldatetime
Set @Result =
case when @FN_InputDt <> 01-01-1900 then
DATEADD(m, DATEDIFF(M, 0,@FN_InputDt)+1, -1)
Else 0 End
Return @Result
End
The code is not working correctly, here is a test that shows the bad behavior:
SELECT dbo.fn_get_last_day_in_month (07-05-2010)
Here is the (incorrect) result:
2010-07-31 00:00:00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
2010年7月5日...5月7日或7月5日是什么?您需要使用安全的日期格式,请查看为 SQL Server 设置标准日期格式
示例来自 如何查找年、月等中的第一天和最后一天
仅用于日使用日期或日期部分
What is 07-05-2010...May 7th or July 5th? You need to use a safe date format, take a look at Setting a standard DateFormat for SQL Server
example from How to find the first and last days in years, months etc
for just the day use day or datepart
将返回值转换为 SQL 日期时间类型,然后调用“DAY”函数以整数形式获取日期。请参阅此处的函数参考:
http://msdn.microsoft.com/en- us/library/ms176052.aspx
不确定您正在使用哪个数据库,但这应该是所有数据库的标准函数。
Cast the return value to a SQL datetime type, and then call the "DAY" function to get the day in as an integer. See the function reference here:
http://msdn.microsoft.com/en-us/library/ms176052.aspx
Not sure which database you're using, but this should be a standard function across all databases.
我会返回一个 DATETIME,我过去在 SMALLDATETIME 方面遇到过麻烦。
另外,我认为您可能是 SQL 完全无视日期格式的受害者。总是,总是,总是,在测试 SQL 函数中输入字符串时,请使用以下格式;
'05 Jul 2010'
您的函数可能有效,但它将您的日期解释为 7 月 5 日 - 而不是 5 月 7 日。
I'd return a DATETIME, I've had trouble with SMALLDATETIME in the past.
Also, I think you may be a victim of SQL's complete disregard of date formatting. Always, always, always, when typing a string into test a SQL function use the following format;
'05 Jul 2010'
Your function probably works but it interpreted your date as 5th July - not 7th May.