Skip to content

3.6 Utility SQL

Peng Ren edited this page Oct 15, 2022 · 5 revisions

Syntax (LIST TABLES)

{LIST | SHOW} [GLOBAL] TABLES
    [Limit [=] value]
    [RegionName [=] 'string']

Syntax (DESC TABLE)

{DESC | DESCRIBE} [GLOBAL] tbl_name

Samples

LIST TABLES
SHOW TABLES Limit 10
LIST GLOBAL TABLES
    Limit 10
    RegionName us-west-1
DESC Issues
DESCRIBE Issues
DESC GLOBAL Issues

Reference

Please refer to boto3 API:

DynamoDB.Client.list_tables

DynamoDB.Client.describe_table

DynamoDB.Client.list_global_tables

DynamoDB.Client.describe_global_table

Clone this wiki locally