1. 查询一张表里面索引
select * from user_indexes where table_name=upper('bills');
2. 查询被索引字段
select * from user_ind_columns where index_name=('in_bills');
3. 给某一字段创建索引
create index in_bills on bills(account_id);
1. 查询一张表里面索引
select * from user_indexes where table_name=upper('bills');
2. 查询被索引字段
select * from user_ind_columns where index_name=('in_bills');
3. 给某一字段创建索引
create index in_bills on bills(account_id);
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。