可用如下方法:
1、用指定用户登录指定的数据库实例:
2、打开sql窗口,写如下语句:
select * from user_tables;
3、此时,查询出的结果(table_name列)即为这个实例中所有的表名。
select * from sys.all_tables where owner = 'PDMM31A'
这样写可以取到当你所要的用户下的所有表
select * from all_tables
select * from user_tables
select * from sys.all_tables where owner = 'QIAQIA'