vote up 3 vote down star
1

Do you need to explicitly create this or is it implicit when define the primary key? Is the answer the same for MyISAM and InnoDB?

flag

75% accept rate

4 Answers

vote up 5 vote down check

No, the primary key is always indexed. This is the same for MyISAM and InnoDB, and is generally true for all storage engines that at all supports indices.

link|flag
Ugh beat by about 30 seconds...and I includced a reference URL...you win this quick draw contest – PSU_Kardi Jul 1 at 20:29
vote up 0 vote down

According to http://dev.mysql.com/doc/refman/5.0/en/constraint-primary-key.html it would appear that this is would be implicit

link|flag
I found that page before I asked the question but it doesn't appear to have anything to do with the question. – Alex Miller Jul 1 at 20:44
I found that link by searching before I asked the question. But it doesn't seem to imply that or anything else much about this question to me. – Alex Miller Jul 1 at 20:45
vote up 1 vote down

The primary key is implicitly indexed for both MyISAM and InnoDB. You can verify this by using EXPLAIN on a query that makes use of the primary key.

link|flag
vote up 2 vote down

No you do not to explicitly create an index for a primary key... it is done by default.

link|flag

Your Answer

Get an OpenID
or

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