mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 18:03:32 -04:00
This adds the documentation for CCS SQL. Co-authored-by: James Rodewig <james.rodewig@elastic.co>
25 lines
645 B
Text
25 lines
645 B
Text
[role="xpack"]
|
|
[[sql-syntax-describe-table]]
|
|
=== DESCRIBE TABLE
|
|
|
|
.Synopsis:
|
|
[source, sql]
|
|
----
|
|
DESCRIBE | DESC
|
|
[CATALOG identifier]? <1>
|
|
[INCLUDE FROZEN]? <2>
|
|
[table_identifier | <3>
|
|
LIKE pattern] <4>
|
|
----
|
|
|
|
<1> Catalog (cluster) identifier. Supports wildcards (`*`).
|
|
<2> Whether or not to include frozen indices.
|
|
<3> Single table (index or data stream) identifier or double-quoted multi-target pattern.
|
|
<4> SQL LIKE pattern matching table names.
|
|
|
|
*Description*: `DESC` and `DESCRIBE` are aliases to <<sql-syntax-show-columns>>.
|
|
|
|
[source, sql]
|
|
----
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[describeTable]
|
|
----
|