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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||||||||
|
|
According to http://dev.mysql.com/doc/refman/5.0/en/constraint-primary-key.html it would appear that this is would be implicit |
|||||
|
|
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. |
|||
|
|
|
No you do not to explicitly create an index for a primary key... it is done by default. |
|||
|
|
|
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 |
|||
|
|
