I'm still confuse on some MySQL documentation regarding INNODB engine index.

Is the primary key on Innodb engine table is automatically index or not?

Do I need to force a duplicate index on the primary key column?

Your help will be much appricated.

thanks

Finau

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Primary key is a key by definition. INDEX term is synonymous to KEY

So just mark field as PK and don't create additional indexes.

link|improve this answer
thanks so much for the reponse zerkms – fkaufusi Nov 1 '11 at 0:02
feedback

Your Answer

 
or
required, but never shown

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