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?
|
|
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. |
||
|
|
|
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. |
||
|
|
