SQL server数据库块编程代码
Posted heroysj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL server数据库块编程代码相关的知识,希望对你有一定的参考价值。
1 declare @N int=0 2 while @N<=100 3 begin 4 print @N; 5 begin 6 if @N%2=0 7 print getdate(); 8 else 9 select GETDATE(); 10 end 11 set @N=@N+1 12 end
以上是关于SQL server数据库块编程代码的主要内容,如果未能解决你的问题,请参考以下文章