/ Published in: SQL
Expand |
Embed | Plain Text
USE TestCA declare @foo int SET @foo=0 while @foo < 5 begin INSERT INTO Table_1 VALUES(CAST(@foo AS char) + 'text',CAST(@foo AS char) + 'text','nix','nix') print 'foo' SET @foo = @foo +1 end
You need to login to post a comment.
