美文网首页
Oracle下查看索引的语句

Oracle下查看索引的语句

作者: ming_Liu | 来源:发表于2019-10-22 17:49 被阅读0次

1. 查询一张表里面索引 

select*from user_indexes where table_name=upper('bills');

2. 查询被索引字段 

select* from user_ind_columns where index_name=('in_bills') and table_name='表名';

select* from user_ind_columns where table_name='MPI_DEMOGRAPHICINFO';

3. 给某一字段创建索引 

create index in_bills on bills(account_id);

删除约束语句格式:

alter table 表名 drop CONSTRAINT主键约束名;

如:

alter table 修课表 drop CONSTRAINT pk_xh_kc;

相关文章

网友评论

      本文标题:Oracle下查看索引的语句

      本文链接:https://www.haomeiwen.com/subject/idolyctx.html