Advertisement
krot

FOR LOOP

Mar 20th, 2018
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.09 KB | None | 0 0
  1. DECLARE @cnt INT = 0;
  2.  
  3. WHILE @cnt < 99
  4. BEGIN
  5.    SELECT 1;
  6.    SET @cnt = @cnt + 1;
  7. END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement