oracle中怎么看是否建索引

2024-11-30 15:39:32
推荐回答(1个)
回答1:

1、通过PL/SQL可以直接查看某表是否建索引
2、通过SQL查询select status,T.* from user_indexes T
where table_name='表名'