mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-04-13 19:00:07 +00:00
21 lines
222 B
Plaintext
21 lines
222 B
Plaintext
|
[[sql-syntax-describe-table]]
|
||
|
=== DESCRIBE TABLE
|
||
|
|
||
|
.Synopsis
|
||
|
[source, sql]
|
||
|
----
|
||
|
DESCRIBE table
|
||
|
----
|
||
|
|
||
|
or
|
||
|
|
||
|
[source, sql]
|
||
|
----
|
||
|
DESC table
|
||
|
----
|
||
|
|
||
|
|
||
|
.Description
|
||
|
|
||
|
`DESC` and `DESCRIBE` are aliases to <<sql-syntax-show-columns>>.
|