gpt4 book ai didi

sql-server - 日期时间数据类型的 SQL Server 2017 问题

转载 作者:行者123 更新时间:2023-12-02 08:08:14 25 4
gpt4 key购买 nike

我有一个简单的表格,其中包含 5 条记录,相差几毫秒。我在将数据库从 2016 升级到 2017 SQL Server 时遇到问题。这里附有两张图片,比较了 2016 年和 2017 年 SQL 服务器的结果。我不明白为什么会在 2017 年出现这种不受欢迎的行为。

这是 2017 SQL Server 中的错误吗? ?

在这两种情况下,表列数据类型都是相同的 datetime 数据类型。

SQL server 2016 output

SQL server 2017 output

这是创建表查询。

    USE [Test]
GO

CREATE TABLE [dbo].[TestVisionBot3](
[FileId] [varchar](50) NULL,
[OrgId] [nchar](10) NOT NULL,
[ProjectId] [varchar](50) NULL,
[CreatedAt] [datetime] NULL,
[LockedUserid] [nvarchar](50) NULL
) ON [PRIMARY]
GO

这也是示例数据。

    1a  1           2a  2018-04-29 10:30:30.010 test
3a 1 2a 2018-04-29 10:30:30.553 test
2a 1 2a 2018-04-29 10:30:30.557 test
4a 1 2a 2018-04-29 10:30:30.560 test
5a 1 2a 2018-04-29 10:30:30.563 test

最佳答案

背景信息:

Precedence rule :

When an operator combines two expressions of different data types, the rules for data type precedence specify that the data type with the lower precedence is converted to the data type with the higher precedence.

因此,在您的 where 子句中,当您将 datetime 与 datetime2 进行比较时,datetime 会上升到 datetime2,因为 datetime2 具有更高的优先级。

现在 SQL Server 2017 会发生什么变化?在新版本的 SQL Server 中,隐式转换将遵循从 datetime 到 datetime2 的转换规则,如下所述

Conversion from datetime to datetime2 rule:

When the conversion is from datetime, the date and time are copied. The fractional precision is extended to 7 digits. The following example shows the results of converting a datetime value to a datetime2 value.

DECLARE @datetime datetime = '2018-04-29 10:30:30.553';
DECLARE @datetime2 datetime2 = @datetime;

SELECT @datetime2 AS '@datetime2', @datetime AS '@datetime';

--Result
--@datetime2 @datetime
------------------------- ---------------------------
--22018-04-29 10:30:30.5533333 2018-04-29 10:30:30.553

现在您之前的转换实际上是字符串文字到 datetime2 的转换。所以它遵循不同的规则。

字符串文字到 datetime2 的转换规则:

时间的字符串部分被分配给时间和日期到日期,因为没有外推精度,而是用 0 右填充以提高精度。顺便说一下,在 sql server 2017 之前的版本中,datetime 到 datetime2 的转换也是如此。

更多解释:当您将“2018-04-29 10:30:30.553”转换为 datetime2 时,它会变成“2018-04-29 10:30:30.5530000”,因为它将字符串文字转换为 datetime2

当您在 where 子句中将存储的 datetime 值与 datetime2 值进行比较时,优先规则适用,因此 datetime 被撞到 datetime2。因此,当“2018-04-29 10:30:30.5530000”(日期时间值)与 Datetime2 值相撞时,小数部分会增强并变得比原来的更大。

因此,您的 .553 扩展为大于 .533 的 .553333

DECLARE @datetime datetime = '2018-04-29 10:30:30.553';
DECLARE @strliteral varchar(max)='2018-04-29 10:30:30.553';
DECLARE @datetime2 datetime2 = @datetime;

SELECT
@datetime2 AS '@datetime2',
@datetime AS '@datetime',
cast(@strliteral as datetime2) AS strtoDatetime2,
cast(@datetime as datetime2) AS datetimetoDatetime2;

-- @datetime2 @datetime strtoDatetime2
datetimetoDatetime2
-- 2018-04-29 10:30:30.5533333 2018-04-29 10:30:30.553 2018-04-29 10:30:30.5530000 2018-04-29 10:30:30.5533333

见下图 enter image description here

关于sql-server - 日期时间数据类型的 SQL Server 2017 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49537947/

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