oracle删除主键,删除索引

2021/9/14 19:08:23

本文主要是介绍oracle删除主键,删除索引,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

主键

--查询主键
SELECT * from user_cons_columns c where c.table_name = '表名';

--删除主键
alter table 表名 drop constraint 主键名;

--新增主键
alter table 表名 add constraint 主键名 primary key(字段名);

索引

--删除普通索引
drop index 索引名字;

--创建普通索引
create index 索引名 on 表名(索引对应的列名);

--创建组合索引
create index 索引名 on 表名(列名1,列名2);

--创建主键索引
alter table 表名 add constraint 表名 add constraint 索引名 primary key (主键);

--删除主键索引
alter table 表名 drop constraint 索引名;

--查询索引
select * from user_ind_columns where index_name='索引名';
select * from user_indexes where table_name='表名';

 



这篇关于oracle删除主键,删除索引的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程