CREATE INDEX
Description
This statement is used to create indexes. You can use this statement to create only Bitmap indexes. For usage notes and scenarios of Bitmap indexes, see Bitmap index.
tip
This operation requires the ALTER privilege on the target table. You can follow the instructions in GRANT to grant this privilege.
Syntax
CREATE INDEX index_name ON table_name (column [, ...],) [USING BITMAP] [COMMENT 'balabala']
Note:
- For the naming conventions of indexes, see System limits.
- One column can have only one BITMAP index. If a column already has an index, you cannot create one more index on it.
Examples
-
Create bitmap index for
siteid
ontable1
.CREATE INDEX index_name ON table1 (siteid) USING BITMAP COMMENT 'balabala';