Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. CREATE SEQUENCE seq_mitarbeiterid
  2. INCREMENT BY 1
  3. START WITH 0
  4. MAX VALUE 9999
  5. NOCACHE
  6. NOCYCLE;
  7.  
  8. CREATE SEQUENCE seq_mitarbeiterid
  9. INCREMENT BY 1
  10. START WITH 0
  11. MAXVALUE 9999 -- Here
  12. NOCACHE
  13. NOCYCLE;
  14.  
  15. create table t (
  16. t_id int auto_increment primary key,
  17. . . .
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement