123456789101112131415161718192021222324252627 |
- [role="xpack"]
- [testenv="basic"]
- [[sql-syntax-describe-table]]
- === DESCRIBE TABLE
- .Synopsis
- [source, sql]
- ----
- DESCRIBE [table identifier<1>|[LIKE pattern<2>]]
- ----
- or
- [source, sql]
- ----
- DESC [table identifier<1>|[LIKE pattern<2>]]
- ----
- .Description
- `DESC` and `DESCRIBE` are aliases to <<sql-syntax-show-columns>>.
- ["source","sql",subs="attributes,callouts,macros"]
- ----
- include-tagged::{sql-specs}/docs.csv-spec[describeTable]
- ----
|