Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. CREATE TABLE Assignment2
  3. (Cl NUMBER(12));
  4. DECLARE @firstLoop
  5. SET @firstLoop = 1
  6. WHILE @firstloop<100000
  7. BEGIN
  8. INSERT INTO Assignment2.C1
  9. VALUES @firstloop
  10. @firstloop=@firstloop+100;
  11. END;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement