Oracle下查看索引的語句

1. 查詢一張表裏面索引 spa

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

2. 查詢被索引字段 code

select * from user_ind_columns where index_name=('in_bills'); 

3. 給某一字段建立索引 blog

create index in_bills on bills(account_id);
相關文章
相關標籤/搜索