alter table table명 add constraint primary key(column명);
alter table table명 modify column명 자료형 primary key;
alter table table명 drop primary key;
alter table table명 drop constraint column명;
alter table table명 modify column명 자료형 null;
→ 만약 auto_increment가 걸려있다면 먼저 제거를 하고 그 다음 진행해야 한다.
alter table table명 modify column명 자료형 not null;
alter table table명 drop primary key;