From 4ea69ab4a9fabbf455271ec1c1a2da06a55e3930 Mon Sep 17 00:00:00 2001 From: Chris Yuan Date: Thu, 30 Jun 2022 22:46:32 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=88=9B=E5=BB=BA=E4=BA=8C=E7=BA=A7=E5=88=86?= =?UTF-8?q?=E5=8C=BA=E8=A1=A8]=E7=AB=A0=E8=8A=82=EF=BC=8C=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=94=99=E8=AF=AF=E7=9A=84=E8=A1=A8=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2.manage-partitions/4.create-subpartitioned-tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-CN/1.users-guide/8.distributed-storage-management/2.manage-partitions/4.create-subpartitioned-tables.md b/zh-CN/1.users-guide/8.distributed-storage-management/2.manage-partitions/4.create-subpartitioned-tables.md index 3162df33..d094bbff 100644 --- a/zh-CN/1.users-guide/8.distributed-storage-management/2.manage-partitions/4.create-subpartitioned-tables.md +++ b/zh-CN/1.users-guide/8.distributed-storage-management/2.manage-partitions/4.create-subpartitioned-tables.md @@ -429,7 +429,7 @@ key_partition_option_list: * 创建模板化 Hash + Key 分区表。 ```sql - obclient> CREATE TABLE tbl2_m_hh(col1 INT,col2 INT,col3 INT) + obclient> CREATE TABLE tbl2_m_hk(col1 INT,col2 INT,col3 INT) PARTITION BY HASH(col1) SUBPARTITION BY KEY(col2) SUBPARTITION TEMPLATE -- Gitee