Guest User

add titles

a guest
Jul 6th, 2016
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.16 KB | None | 0 0
  1. DECLARE @cnt INT = 410001;
  2.  
  3. WHILE @cnt < 410550
  4. BEGIN
  5.    insert into  heroes..title
  6.  
  7.  values (yourCID,@cnt,1,GETDATE(),NULL,NULL)
  8.    SET @cnt = @cnt + 1;
  9. END
Advertisement
Add Comment
Please, Sign In to add comment