数据库修改主键的方法

重设主键字段

有时数据库操作时需要将一个主键修改为联合主键或者把主键改为其他列,这时候单纯的add primary key是没有用的,必须先删除主键约束再重新添加。

ORACLE:

1、select constraint_name from user_constraints where table_name='TABNAME';  (查找主键id)

2、alter table TABNAME drop constraint KEY_ID;  (KEY_ID代表上面查到的主键id,  删除主键约束)

3、alter table TABNAME add primary key(another_col,...);  (括号中填其他列名,一个或多个)


MYSQL:

1、alter table TABNAME drop primary key;

2、alter table TABNAME add primary key(another_col,...);

你可能感兴趣的:(数据库修改主键的方法)