oracle查询所有表

查询所有表:

select * from user_tables;

查询所有表的数量:

select count(*) from user_tables;

模糊查询该条件的表名称:

select * from user_tables where table_name like '%S%';

条件查询所属用户:

select * from user_tables where Tablespace_name = 'scott';

猜你喜欢

转载自blog.csdn.net/qq_39313596/article/details/80663119