Skip to content

Instantly share code, notes, and snippets.

@FilipDeVos
Created April 24, 2012 12:29
Show Gist options
  • Save FilipDeVos/2479237 to your computer and use it in GitHub Desktop.
Save FilipDeVos/2479237 to your computer and use it in GitHub Desktop.
TSQL Beginners Training samples
DECLARE @i int = 0
WHILE @i < 10
BEGIN
PRINT N'The number is: ' + CONVERT(NVARCHAR(3), @i)
SET @i += 1 -- in sql 2005 --> set @i = @i + 1
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment