sql server循环语句

declare @star int,@end int

set @star=1

set @end=10

while @star<=@end

begin

print @star

set @star=@star+1

end

    原文作者:Eric_Zeng
    原文地址: https://www.jianshu.com/p/1159af2f6233
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞