select * from user_indexes where table_name = upper('map_eqp_onu');
select * from user_ind_columns where index_name = ('idx_map_eqp_onu_id');
1:清空螢幕 clear screen
2:查詢某個表的主鍵 select column_name from user_cons_columns where constraint_name = (select u.constraint_name from user_constraints u where u.table_name = 'shipment_notes' and u.constraint_type = 'p');
oracle中的索引檢視
1 建立索引 create index 索引名 on 表名 列名 2 刪除索引 drop index 索引名 3 建立組合索引create index 索引名 on 表名 列名 1,列名2 在資料庫中查詢表名 select fromuser tableswheretable namelike tab...
plsql檢視主鍵 Oracle 查詢主鍵和索引
oracle 1 查主鍵名稱 select from user constraints where table name aaa and constraint type p 查主鍵對應的列 select from user cons columns where table name aaa and ...
Oracle建表 索引 主鍵
主鍵 create table emp id number constraint id pr primary key name1 varchar 8 create table emp9 id number name1 varchar 8 constraint aba pr primary key i...