declare @B_counter int declare @A_counter int set @B_counter = 0 WHILE @B_counter <= 10 begin set @A_counter = 0 WHILE @A_counter <= 10 begin SET @A_counter = @A_counter + 1 print 'inner loop' end SET @B_counter = @B_counter + 1 print 'outer loop' end
In reply to Re^2: (OT) T SQL Problem
by ikegami
in thread (OT) T SQL Problem
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |