Explore your schema with InfluxQL |
Use InfluxQL `SHOW` statements to return information about your data schema.
|
influxdb3_enterprise |
name |
parent |
identifier |
Explore your schema |
Query with InfluxQL |
query-influxql-schema |
|
|
201 |
|
/influxdb3/enterprise/reference/influxql/show/ |
|
##### List measurements
```sql
SHOW MEASUREMENTS
```
##### List field keys in a measurement
```sql
SHOW FIELD KEYS FROM "measurement"
```
##### List tag keys in a measurement
```sql
SHOW TAG KEYS FROM "measurement"
```
##### List tag values for a specific tag key
```sql
SHOW TAG VALUES FROM "measurement" WITH KEY = "tag-key" WHERE time > now() - 1d
```
|
/shared/influxdb3-query-guides/influxql/explore-schema.md |