查询所有表:


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';
————————————————
版权声明:本文为CSDN博主「hlvy」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_39313596/article/details/80663119

原文地址:https://www.cnblogs.com/lcword/p/15076948.html