docs-v2/content/influxdb3/enterprise/admin/tables/list.md

936 B

title description menu weight list_code_example related source
List tables Use the [`influxdb3 query` command](/influxdb3/enterprise/reference/cli/influxdb3/query/) or the [HTTP API](/influxdb3/enterprise/api/v3/) to list tables in a specified database in {{% product-name %}}. Use SQL SHOW TABLES or InfluxQL SHOW MEASUREMENTS statements.
influxdb3_enterprise
parent
Manage tables
202 ```sh # CLI influxdb3 query \ --database <DATABASE_NAME> \ --token <AUTH_TOKEN> \ "SHOW TABLES" # HTTP API curl --get "http://localhost:8181/api/v3/query_sql" \ --header "Authorization: Bearer <AUTH_TOKEN>" \ --data-urlencode "db=<DATABASE_NAME>" \ --data-urlencode "q=SHOW TABLES" ```
/influxdb3/enterprise/reference/cli/influxdb3/query/
/influxdb3/enterprise/api/v3/
/shared/influxdb3-admin/tables/list.md