您在查询Oracle中的架构中的所有表名时要查询哪个对象?
查看您有权访问的所有表
select table_name from all_tables where owner='';
选择当前登录架构的所有表(例如,您的表)
select table_name from user_tables;