sql server中的while循环语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql server中的while循环语句相关的知识,希望对你有一定的参考价值。
语法格式:
while 条件
begin
.......
end
declare @num int=100 while @num > 99 begin update SDetail set SName=‘达文西-屌‘ where SScore>99 set @[email protected]10 end
以上是关于sql server中的while循环语句的主要内容,如果未能解决你的问题,请参考以下文章