diff --git a/docs/en/using_starrocks/Bitmap_index.md b/docs/en/using_starrocks/Bitmap_index.md index 54484181c4d34..428cd68257716 100644 --- a/docs/en/using_starrocks/Bitmap_index.md +++ b/docs/en/using_starrocks/Bitmap_index.md @@ -102,7 +102,7 @@ Bitmap indexes can be created on all columns in primary key and duplicate key ta - `CREATE INDEX` can be used to create a bitmap index after table creation. For detailed parameter descriptions and examples, refer to [CREATE INDEX](../sql-reference/sql-statements/table_bucket_part_index/CREATE_INDEX.md). ```SQL - CREATE INDEX lo_quantity_index (lo_quantity) USING BITMAP; + CREATE INDEX lo_quantity_index ON lineorder_partial (lo_quantity) USING BITMAP; ``` ### Progress of creating an index diff --git a/docs/zh/using_starrocks/Bitmap_index.md b/docs/zh/using_starrocks/Bitmap_index.md index 39bb0c4284bcb..ab8967513c379 100644 --- a/docs/zh/using_starrocks/Bitmap_index.md +++ b/docs/zh/using_starrocks/Bitmap_index.md @@ -102,7 +102,7 @@ Bitmap 索引适用于优化等值 `=` 查询、`[NOT] IN` 范围查询、`>`, - 建表后使用 CREATE INDEX 创建 Bitmap 索引。详细参数说明和示例,参见 [CREATE INDEX](../sql-reference/sql-statements/table_bucket_part_index/CREATE_INDEX.md)。 ```SQL - CREATE INDEX lo_quantity_index (lo_quantity) USING BITMAP; + CREATE INDEX lo_quantity_index ON lineorder_partial (lo_quantity) USING BITMAP; ``` ### 创建进度