【oracle_sql】查看当前用户下索引的相关信息

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/debimeng/article/details/86323879

oracle查看当前用户下索引的相关信息

select t1.table_owner,t1.table_name,t2.index_name,t1.uniqueness,t2.column_name
from user_indexes t1,user_ind_colunmn t2
where t1.index_name = t2.index_name;

猜你喜欢

转载自blog.csdn.net/debimeng/article/details/86323879