在 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()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
修改现有小数位信息Modify Existing decimal places info(修改现有小数位信息)
多次指定相关名称“CONVERT"The correlation name #39;CONVERT#39; is specified multiple times(多次指定相关名称“CONVERT)
T-SQL 左连接不返回空列T-SQL left join not returning null columns(T-SQL 左连接不返回空列)
从逗号或管道运算符字符串中删除重复项remove duplicates from comma or pipeline operator string(从逗号或管道运算符字符串中删除重复项)
将迭代查询更改为基于关系集的查询Change an iterative query to a relational set-based query(将迭代查询更改为基于关系集的查询)
将零连接到 sql server 选择值仍然显示 4 位而不是concatenate a zero onto sql server select value shows 4 digits still and not 5(将零连接到 sql server 选择值仍然显示 4 位而不是 5)