2011/04/20

T-SQL 實現 for loop


有的時候我們會需要使用迴圈來幫助我們完成一些事情,t-sql 的迴圈又該如何撰寫?
語法:

DECLARE  @imax INT,
         @i    INT 
SET		 @imax = 10
SET		 @i = 1 

while (@i <= @imax)
	begin
		print @i
		Set @i=@i+1
	end


結果:

2011-04-21_102741 
參考:http://www.sqlusa.com/bestpractices/whilelooptablevariable/

0 Comments:

張貼留言