数据库oracle [重复]

7z5jn7bk  于 2023-06-29  发布在  Oracle
关注(0)|答案(2)|浏览(135)

此问题已在此处有答案

Get list of all tables in Oracle?(24回答)
8年前关闭。
如何知道使用Oracle在每个DB中创建的表列表?我想删除不必要的。

pxiryf3j

pxiryf3j1#

此问题/答案应给予您所需的详细信息:Get list of all tables in Oracle?
但总的来说

-- If you have access
SELECT owner, table_name
  FROM dba_tables

-- Will show what your user has access to
SELECT owner, table_name
  FROM all_tables
vdzxcuhz

vdzxcuhz2#

SHOW TABLES  IN `db`;

其中db是数据库的名称。

相关问题