SQL DATEDIFF 不起作用?

发布于 2024-08-27 07:04:24 字数 475 浏览 5 评论 0原文

我正在运行一个简单的 DATEDIFF 查询,但它似乎没有正确计算日期,或者我做错了什么。

如果我运行

PRINT DATEDIFF(Day, 2010-01-20, 2010-01-01)
RETURN 19

哪个是正确的。如果我将第一个日期的月份更改为二月(02),我会得到一些奇怪的东西。

PRINT DATEDIFF(Day, 2010-02-20, 2010-01-01)
RETURN 20

现在不应该是48之类的吗?

任何人都可以看到我做错了什么,或者如果我想要这些日期之间的天数,这不是要使用的正确函数吗?

我尝试过与另一位约会:

PRINT (2010-02-20) - (2010-01-01)
RETURN -20

非常感谢任何帮助。

谢谢 J。

I am running a simple DATEDIFF query but it doesn't seem to calculate the days properly or i'm doing something wrong.

If I run

PRINT DATEDIFF(Day, 2010-01-20, 2010-01-01)
RETURN 19

Which is correct. If i change the month in the first date to Feb (02) I get something strange.

PRINT DATEDIFF(Day, 2010-02-20, 2010-01-01)
RETURN 20

Now shouldn't it be 48 or something?

Can anyone see what i'm doing wrong or is this not the correct function to be using if I want the No of days between these dates?

I've tried taking one date from the other:

PRINT (2010-02-20) - (2010-01-01)
RETURN -20

Any help much appreciated.

Thanks
J.

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

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

发布评论

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

评论(4

再浓的妆也掩不了殇 2024-09-03 07:04:24

你缺少引号

PRINT DATEDIFF(Day, '2010-01-01', '2010-02-20')

你得到 20 是因为

2010 - 1 - 1 = 2008
2010 - 2 - 20 = 1988

2008 - 1988 = 20

You are missing quotes

PRINT DATEDIFF(Day, '2010-01-01', '2010-02-20')

You're getting 20 because

2010 - 1 - 1 = 2008
2010 - 2 - 20 = 1988

2008 - 1988 = 20
友欢 2024-09-03 07:04:24

如果您以这种方式运行它:

SELECT  2010-02-20, 2010-01-01

您将看到

1988  2008

哪些是结果或您放在此处的整数运算。

将日期常量括在单引号中:

SELECT  DATEDIFF(Day, '2010-02-20', '2010-01-01')

--
-50

If you run it this way:

SELECT  2010-02-20, 2010-01-01

you will see

1988  2008

which are results or the integer operations that you put here.

Enclose the date constants into single quotes:

SELECT  DATEDIFF(Day, '2010-02-20', '2010-01-01')

--
-50
萌面超妹 2024-09-03 07:04:24

如果你用撇号括住你的日期,它就会起作用 -

SELECT DATEDIFF(day, '2010-02-20', '2010-01-10')

-41

It works if you surround your dates with apostrophes -

SELECT DATEDIFF(day, '2010-02-20', '2010-01-10')

-41
小猫一只 2024-09-03 07:04:24
PRINT DATEDIFF(Day, '2010-01-10', '2010-02-20') 

这需要第二次约会 - 第一次约会。别忘了‘’。

PRINT DATEDIFF(Day, '2010-01-10', '2010-02-20') 

That takes 2nd date - first date. Don't forget ' '.

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