We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CREATE TABLE `my_column_table` ( Key Uint64 not null, Value String, PRIMARY KEY (Key) ) PARTITION BY HASH(Key) WITH ( STORE = COLUMN, AUTO_PARTITIONING_MIN_PARTITIONS_COUNT = 10 );
docs
ALTER TABLE `my_table` ADD INDEX `name_index` GLOBAL ON (`name`);