如何查询oracle中的所有表和视图
发布网友
发布时间:2022-04-25 21:34
我来回答
共1个回答
热心网友
时间:2022-04-08 11:47
--查询所有表,owner为用户,dba_objects只能由具有dba角色的用户去查询,比如system用户。
select * from dba_objects where owner='SYS' and object_type='TABLE';
--查询所有视图
select * from dba_objects where object_type='VIEW';
--查看object_type所有对象类型,你可以看看,需要什么就查什么
select distinct object_type from dba_objects order by object_type asc;