본문 바로가기
DB

[MySQL] 컬럼 Id 자동증가 속성 변경

by foreverever 2019. 10. 3.
반응형

//컬럼 자동증가

alter table 'table' modify 'coulmn' int not null auto_increment;

 

//컬럼 기본키 설정 및 자동증가

alter table 'table' modify 'coulmn' int not null auto_increment primary key;

 

반응형