4
CREATE [UNIQUE] INDEX index_name [USING {BTREE | HASH}] ON table_name (column_name [length] [ASC | DESC], ...);
8
CREATE INDEX table_1_index ON table_1 (a,b);
10
This would create an index on table_t named table_1_index that convered
13
FIXME: how this is implemented currently. i.e. no fast add index