本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
SHOW TABLES
顯示結構描述中的資料表清單,以及一些資料表屬性。
每個輸出列都包含資料庫名稱、結構描述名稱、資料表名稱、資料表類型、資料表 ACL和備註。如需這些屬性的相關資訊,請參閱 SVV_ALL_TABLES。
如果SHOWTABLES命令會產生超過 10,000 個資料表,則會傳回錯誤。
語法
SHOW TABLES FROM SCHEMA database_name.schema_name [LIKE 'filter_pattern'] [LIMIT row_limit ]
參數
- database_name
-
包含所要列出資料表的資料庫名稱。
若要在 中顯示資料表 AWS Glue Data Catalog,請指定 (
awsdatacatalog
) 作為資料庫名稱,並確保系統組態data_catalog_auto_mount
設定為true
。如需詳細資訊,請參閱ALTER SYSTEM。 - schema_name
-
包含所要列出資料表的結構描述名稱。
若要顯示 AWS Glue Data Catalog 資料表,請提供 AWS Glue 資料庫名稱作為結構描述名稱。
- filter_pattern
-
有效的 UTF-8 字元表達式,具有與資料表名稱相符的模式。LIKE 選項會執行區分大小寫的比對,以支援下列模式比對元字元:
中繼字元 描述 %
比對任何 0 的序列或更多字元。 _
比對任一個單一字元。 如果 filter_pattern 不包含中繼字元,則模式只會代表字串本身;在這種情況下,其LIKE作用與等於運算子相同。
- row_limit
-
傳回的最大資料列數。row_limit 可以是 0 到 10,000。
範例
下列範例顯示 Amazon Redshift 資料庫中名為 dev
且在結構描述 public
中的資料表。
SHOW TABLES FROM SCHEMA dev.public;
database_name | schema_name | table_name | table_type | table_acl | remarks ---------------+-------------+------------+------------+-----------+--------- dev | public | tb | TABLE | | dev | public | tb2 | TABLE | | dev | public | tb3 | TABLE | |
下列範例顯示 結構描述 中名為 的 AWS Glue Data Catalog 資料庫中awsdatacatalog
的資料表batman
。
SHOW TABLES FROM SCHEMA awsdatacatalog.batman;
database_name | schema_name | table_name | table_type | table_acl | remarks ----------------+-------------+------------------+------------+-----------+--------- awsdatacatalog | batman | nation | EXTERNAL | | awsdatacatalog | batman | part | EXTERNAL | | awsdatacatalog | batman | partsupp | EXTERNAL | | awsdatacatalog | batman | region | EXTERNAL | | awsdatacatalog | batman | supplier | EXTERNAL | | awsdatacatalog | batman | automount_nation | EXTERNAL | |