oracle 查看表索引
访问表的时候是必须带用户名的,例如平时是这样访问的select*fromuser1.Friends;现在我想查这个Friends表的所有索引,应该怎么查呢?我用的是pls...
访问表的时候是必须带用户名的,例如平时是这样访问的
select * from user1.Friends;
现在我想查这个Friends表的所有索引,应该怎么查呢?我用的是pl sql
试过了下面的语句,但是都没有任何结果
select table_name,constraint_name,constraint_type from user_constraints
where table_name='FRIENDS';
select table_name,constraint_name,constraint_type from user_constraints
where table_name='USER1.FRIENDS'; 展开
select * from user1.Friends;
现在我想查这个Friends表的所有索引,应该怎么查呢?我用的是pl sql
试过了下面的语句,但是都没有任何结果
select table_name,constraint_name,constraint_type from user_constraints
where table_name='FRIENDS';
select table_name,constraint_name,constraint_type from user_constraints
where table_name='USER1.FRIENDS'; 展开
3个回答
展开全部
select * from user_indexes where table_name='FRIENDS';
select * from dba_indexes where owner='USER1' and table_name='FRIENDS';
select * from dba_indexes where owner='USER1' and table_name='FRIENDS';
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
选中表 右键 View 然后 查看 index
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询