码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 查询主键和索引

时间:2017-07-03 12:05:27      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:int   ext   add   bll   ima   account   bsp   span   key   

ORACLE: 

1、查主键名称: 
select * from user_constraints 
where table_name = ‘AAA‘ 
and constraint_type =‘P‘; 


查主键对应的列: 
select * from user_cons_columns 
where table_name = ‘AAA‘ 
and constraint_name = ‘PK_AAA‘; (PK_AAA 是主键名)

2、查索引名称: 
select * from user_indexes 
where table_name = ‘AAA‘; 
查索引对应的列: 
select * from user_ind_columns 
where table_name = ‘AAA‘ 
and index_name = ‘INDX_BA‘; (INDX_BA 是 索引名)

了解几个字典表的用处 如:user_constraints 

添加主键:

alter table TableName

add constraint PK NAME
primary key("ACCOUNTINGTASKID"...);

删除主键:

alter table EXTRACTED_POSTING(tablle name)

drop constraint EXTRACTED_POSTING_ACCTID_PK;(PK name)

Oracle 查询主键和索引

标签:int   ext   add   bll   ima   account   bsp   span   key   

原文地址:http://www.cnblogs.com/mid-wk/p/7109963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!