Force recalculation of GetDate() for each row(为每一行强制重新计算 GetDate())
问题描述
在 SQL Server Management Studio 中运行此命令时
When running this command in SQL Server Management Studio
UPDATE LogChange
SET Created = GETDATE()
WHERE id > 6000
奇怪的事情发生了.. :)
something strange happens.. :)
Created 列中的所有行都获得相同的值.
All rows get the same value in the Created column.
如何强制"SQL Server 重新计算每一行的 GetDate?
How do I "force" SQL Server to recalculate the GetDate for every row?
推荐答案
如果您想保证将单独的值应用于每一行,请编写一个绝对能做到这一点的查询:
If you want to guarantee that separate values are applied to each row, write a query that definitely does that:
declare @dt datetime
set @dt = GETDATE()
;With Diffs as (
select
*,
ROW_NUMBER() OVER (ORDER BY id) * 10 as Offset
from
LogChange
WHERE id > 6000
)
UPDATE Diffs
SET Created = DATEADD(millisecond,Offset,@dt)
我们知道上面会为每一行生成单独的偏移量,并且我们肯定会将这些偏移量添加到一个固定值.经常观察到 GETDATE() 将为所有行返回相同的值,但我找不到任何保证这一点的特定文档,这就是为什么我还介绍了一个 @dt 变量,以便我知道它只分配一次.
We know that the above will generate separate offsets for each row, and that we're definitely adding those offsets to a fixed value. It has often been observed that GETDATE() will return the same value for all rows but I cannot find any specific documentation that guarantees this, which is why I've also introduced a @dt variable so that I know it's only assigned once.
这篇关于为每一行强制重新计算 GetDate()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为每一行强制重新计算 GetDate()
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
