Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DECLARE @Counter INT
- SET @Counter = 0
- WHILE @Counter <> 19
- BEGIN
- SET @Counter = @Counter + 1
- IF @Counter >= 4 AND @counter <= 9
- BEGIN
- CONTINUE
- PRINT 'No Counter Here'
- END
- ELSE IF @Counter > 13
- BREAK
- ELSE
- PRINT 'The counter : ' + CAST(@Counter AS CHAR)
- END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement