Watch this example on YouTube
Declare @i int = 0;While @i < 10Begin Insert into Test1(Name) values('frank ' + Cast(@i as varchar)) Set @i = @i + 1;End
No comments:
Post a Comment