首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Oracle查询目录

2012-09-13 
Oracle查询索引1、查询一张表里面的索引?select * from user_indexes where table_nameupper(tableName)

Oracle查询索引

1、查询一张表里面的索引

?

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

?

?

2、查询被索引的字段

?

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

?

热点排行