This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 6ad04164dac [DOCS] Add doc update for HUDI-7962 (#11622)
6ad04164dac is described below
commit 6ad04164dac86b2ee805845d77d28dd246130e40
Author: houyuting <[email protected]>
AuthorDate: Sun Jul 14 09:08:04 2024 +0800
[DOCS] Add doc update for HUDI-7962 (#11622)
Co-authored-by: houyuting <[email protected]>
---
website/docs/sql_ddl.md | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/website/docs/sql_ddl.md b/website/docs/sql_ddl.md
index a85d8a7bb04..eebadfc580e 100644
--- a/website/docs/sql_ddl.md
+++ b/website/docs/sql_ddl.md
@@ -496,6 +496,18 @@ SHOW PARTITIONS hudi_table;
--Drop partition:
ALTER TABLE hudi_table DROP PARTITION (dt='2021-12-09', hh='10');
```
+### Show create table
+
+**Syntax**
+
+```sql
+SHOW CREATE TABLE tableIdentifier;
+```
+
+**Examples**
+```sql
+SHOW CREATE TABLE hudi_table;
+```
### Caveats