sql语句怎么写循环语句( 二 )


评论0 0 0 。
6. 如何用Sql语句循环执行语句 这个问题涉及到sql语句的循环执行语句的用法 。sql语句中的循环和其他编程语言的原理是类似的,只不过写法上有点区别 。
1.定义循环时需要用到的变量并赋值:
declare @i int
set @uid=1
2.sql语句的循环是需要嵌套在begin,end语句之内的:
begin
#需要执行的语句 。
end
3.while语句的语法如下(需要注意,每次循环完成要给变量加1):
while @uidselect * from test where id=10
set @[email protected]+1
4.完整语句示例如下:
declare @i int
set @uid=1
begin
while @uidselect * from test where id=10
set @[email protected]+1
【sql语句怎么写循环语句】end