mysql은 오라클 처럼 시퀀스를 따로 생성할 수 없다. 따라서 컬럼을 생성이나 추가할때 auto_increment 라는 옵션을 사용한다.
alter table 테이블명 add 컬럼명 자료형(자료형길이) auto_increment;