1. 程式人生 > >Oracle - 如何用Sql查詢所有表的名字

Oracle - 如何用Sql查詢所有表的名字

select * from tabs;
select * from DBA_TABLES;
select * from ALL_TABLES;

select * from USER_TABLES;


查給定使用者下的表:

select * from ALL_TABLES where OWNER = 'AMES' 
select * from ALL_TABLES where OWNER = 'SIMS'