DECLARE @counter INT = 0; WHILE @counter < 5 BEGIN SET @counter = @counter + 1; IF @counter = 3 CONTINUE; PRINT @counter; END // 1 2 4 5