Delphi中的FloatToStr(Now)与SQL Server中的Cast(GETDATE() as float)之间的区别

发布于 2024-12-18 00:56:13 字数 373 浏览 0 评论 0原文

为什么使用以下命令在 Delphi 和 SQL Server 中的日期转换之间存在差异:

SQL Server :

SELECT CAST(GETDATE() AS FLOAT)

Delphi :

writeln(floattostr(now));

示例:今天

SQL Server = 40871.431264506 
Delphi     = 40873.4333729861

为什么两个结果不同呢?

Why is there a difference between the conversion of a date in Delphi and SQL Server with these commands:

SQL Server :

SELECT CAST(GETDATE() AS FLOAT)

Delphi :

writeln(floattostr(now));

Example: For today

SQL Server = 40871.431264506 
Delphi     = 40873.4333729861

Why are the two results different?

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

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

发布评论

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

评论(1

眼泪淡了忧伤 2024-12-25 00:56:13

因为许多语言在内部处理日期的方式不同。它们可能会也可能不会在内部将它们存储为浮点数,并且也可能在不同的“开始”日期开始计数。例如,Delphi 从 1899 年 12 月 30 日开始(TDateTime 为 0)。

另请参阅此链接

Because many languages have different ways of dealing with dates internally. They may or may not store them internally as a float, and may also start counting at different "starting" dates. For instance, Delphi starts at 12/30/1899 (a TDateTime of 0).

See also this link.

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