1、如果有auto_increment,先删除之;
alter table products change pid pid int
2、删除主键约束 primary key.
alter table products drop primary key
百度了一下,如果是自增列要两句:
ALTER TABLE tabname MODIFY col INT NOT NULLALTER TABLE tabname DROP PRIMARY KEY
删除主键时是否会删除索引? 答案取决于索引是创建主键时自动创建的,还是创建主键前手工创建的。测试如下:--建表create table hqy_test(id integer) --建索引create (unique)index idx_hqy_id on hqy_test(id) --加主键alter table hqy_test add constraint pk_hqy_id primary key (id)
select index_name from user_indexes where index_name='IDX_HQY_ID'IDX_HQY_ID
---删除主键
alter table hqy_test drop constraint pk_hqy_id或者:alter table hqy_test drop primary key也是行的。
select index_name from user_indexes where index_name='IDX_HQY_ID'
IDX_HQY_ID ==没有删除索引
--删除索引,增加主键并自动创建索引
drop index idx_hqy_id
alter talbe hqy_test add constraint pk_hqy_id primary key(id) using index
select index_name from user_indexes where index_name='PK_HQY_ID'
PK_HQY_ID ==自动创建了索引
--删除主键约束
alter table hqy_test drop primary key
select index_name from user_indexes where index_name='PK_HQY_ID'
无 ==索引被删除了
如果删除主键时,希望同时删掉索引,则应该增加drop index选项,从而不管索引是否是创建主键时自动创建的,即:alter table hqy_test drop primary key drop index
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)