SQL - Stored Procedures and Functions
What is wrong with this SQL procedure snippet?
DECLARE @counter INT = 0;
WHILE @counter < 3
BEGIN
SET @counter = @counter + 1;
END
PRINT @counter;
