Let's create a new index on an existing table:
CREATE INDEX `IDX_some_index`
ON `some_table` (`a_column`, `another_column`);
Is this useful?
ANALYZE TABLE `some_table`;
Can anyone point to some documentation clarifying whether the CREATE INDEX process analyze the target table or not?