mirror of https://github.com/apache/druid.git
SQL: Fix example INFORMATION_SCHEMA query. (#4017)
This commit is contained in:
parent
4ca5270e88
commit
960769c583
|
@ -93,7 +93,7 @@ This cached metadata is queryable through "INFORMATION_SCHEMA" tables. For examp
|
||||||
datasource "foo", use the query:
|
datasource "foo", use the query:
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE SCHEMA_NAME = 'druid' AND TABLE_NAME = 'foo'
|
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'druid' AND TABLE_NAME = 'foo'
|
||||||
```
|
```
|
||||||
|
|
||||||
See the [INFORMATION_SCHEMA tables](#information_schema-tables) section below for details on the available metadata.
|
See the [INFORMATION_SCHEMA tables](#information_schema-tables) section below for details on the available metadata.
|
||||||
|
|
Loading…
Reference in New Issue