`

MySQL PK를 변경방법

alter table 테이블명 drop primary key;

alter table 테이블명 add primary key(컬럼1, 컬럼2, 컬럼3);

 

+ Recent posts