SQL Server - DATEDIFF 舍入错误

发布于 2024-12-07 11:21:13 字数 250 浏览 0 评论 0原文

在我的 sql 语句中,我需要检索 datediff 超过 3 个月的行。

但我发现它似乎有舍入问题,例如

起始日期:2010-09-09
截止日期:2010-12-01

select datediff(month,' 2010-09-09', '2010-12-01')

结果返回 3。

如何修复它?谢谢。

问候, 乔

In my sql statement, I need to retrieve rows which datediff more than 3 months.

But I found that it seems have rounding problem such as

From Date: 2010-09-09
To Date: 2010-12-01

select datediff(month,' 2010-09-09', '2010-12-01')

It returns 3 for result.

How to fix it ? thanks.

regards,
Joe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑着哭最痛 2024-12-14 11:21:13

你可以使用

datediff(day,@d1,@d2) >= 90

You could use

datediff(day,@d1,@d2) >= 90
单挑你×的.吻 2024-12-14 11:21:13

Datediff(month, date1, date2) 只会比较月份部分之间的差异,不考虑天数。

为了计算日期之间的实际月份数,您必须做一些手动工作。

这个答案

看起来与您要问什么,但您可能需要根据您对构成“月”差异的具体定义(包括部分月份?)进行修改。

Datediff(month, date1, date2) will only compare the difference between the month parts and does not take days into account.

In order to calculate the real number of months between the dates, you will have to do some manual work.

This answer

looks to be a match to what you are asking but you may have to modify depending on your specific definition of what constitutes a 'month' difference (partial months included?).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文