首页 > 开发 > 综合 > 正文

一个update的小故事

2024-07-21 02:48:28
字体:
来源:转载
供稿:网友
一个update的小故事

偶尔测试了一段小代码,写个循环

if object_id('tempdb..#TB') is not null    drop table #TBgocreate table #TB(    ID int)insert into #TB (ID)select 1union allselect 2union allselect 3union allselect 4union allselect 5--代码1declare @i int set @i = 1while @i < 5begin    update #TB set ID = ID,@i = @i + 1    select @iend
--代码2set @i = 1while @i < 5begin    update #TB set ID = ID   set @i = @i + 1    select @iend

本来我觉得2段代码是一致的。都是执行了5次,那么@i = 6

但实际上,代码2是符合上述情况,执行了5次,@i = 6

但代码1 却只是执行了1次,@i = 6

对于这种情况,我只能猜测是update本身的机制。对于代码1,每一条影响记录,那么便执行一次@i = @i + 1。所以在一次循环里面就执行了5次,达到了while的阀值,跳出循环。

而对于代码2,则没有这个限制,顺序执行。

当然这只是个人猜想,还请各位指导。

这么一个简单的语句,一个不留神都踩坑,看来Sql Server里面的故事真不少啊


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表