sql数据库 while

 use books declare @n int while(0=0) begin select @n =COUNT(*) from tests where score<200 if(@n>0) update tests set score=score+10 where score<100 else break endselect * from tests  为什么他 break不执行 一直给你算

while(0=0)
begin
select @n =COUNT(*) from tests where score<200
if(@n>0)
update tests set score=score+10 where score<100
else
break
end

select * from tests
这句话本身没有什么问题,可实际情况容易造成死循环,比如有一条数据的score=99,循环执行一次后,此条记录的score=109,这条永远都会满足select @n =COUNT(*) from tests where score<200 使@n>0,但又满足不了update tests set score=score+10 where score<100
这句话中的条件,所以此条记录永远都会被执行if @n>0 这个语句块,不会执行else中的部分,由此造成死循环
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-02-03
.
第2个回答  2012-02-08
2楼回答很有道理
相似回答