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' 


猜你喜欢

转载自blog.csdn.net/Pansc2004/article/details/80763170