Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- create proc #f
- @for INT
- AS
- BEGIN
- DECLARE @cnt INT = 0;
- WHILE @cnt < @for
- BEGIN
- SELECT 1
- SET @cnt = @cnt + 1;
- END;
- END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement