vote up 1 vote down star

Does MySQL's ALTER TABLE ADD PRIMARY KEY also cluster the data, or do I need to create the table from scratch with the primary key to get the clustering?

flag

1 Answer

vote up 1 vote down check

It depends on the engine. MyISAM doesn't do it, but InnoDB does. If you're using MyISAM you can cluster the table using the ALTER TABLE ORDER BY syntax.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.