Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您查询什么对象来选择 Oracle 模式中的所有表名?
查看您有权访问的所有表格
select table_name from all_tables where owner='<SCHEMA>';
为当前登录的模式选择所有表(例如,您的表)
select table_name from user_tables;
您正在寻找:
从用户表中选择表名;
您可以使用:
select tabname from tabs
获取模式中存在的表的名称。