Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 56 down vote accepted

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.

share|improve this answer
7  
Ugh beat by about 30 seconds...and I includced a reference URL...you win this quick draw contest – PSU_Kardi Jul 1 '09 at 20:29
If primary key is always indexed why do people when talking about database architecture/performance always advise SQL newcomers to "make sure their database is properly indexed"? – tim peterson Mar 7 at 10:23
1  
@tim: They're telling people to make sure that any other columns used for filtering, grouping or sorting also have indices. – Emil H Mar 12 at 23:31

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

share|improve this answer
1  
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 '09 at 20:45

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.

share|improve this answer

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

share|improve this answer

Even though this was asked in 2009 figured I'd post an actual reference to the mySQL documentation on primary keys. http://dev.mysql.com/doc/refman/5.5/en/optimizing-primary-keys.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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