Is the primary key automatically indexed in MySQL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T07:31:19Zhttp://stackoverflow.com/feeds/question/1071180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql3Is the primary key automatically indexed in MySQL?Alex Miller2009-07-01T20:21:26Z2009-07-14T02:00:41Z
<p>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?</p>
http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071199#10711995Answer by Emil H for Is the primary key automatically indexed in MySQL?Emil H2009-07-01T20:24:32Z2009-07-01T20:24:32Z<p>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.</p>
http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071203#10712032Answer by Rick for Is the primary key automatically indexed in MySQL?Rick2009-07-01T20:24:49Z2009-07-01T20:24:49Z<p>No you do not to explicitly create an index for a primary key... it is done by default.</p>
http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071206#10712061Answer by Patrick Gryciuk for Is the primary key automatically indexed in MySQL?Patrick Gryciuk2009-07-01T20:25:05Z2009-07-01T20:25:05Z<p>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.</p>
http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071209#10712090Answer by PSU_Kardi for Is the primary key automatically indexed in MySQL?PSU_Kardi2009-07-01T20:25:27Z2009-07-01T20:25:27Z<p>According to <a href="http://dev.mysql.com/doc/refman/5.0/en/constraint-primary-key.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/constraint-primary-key.html</a> it would appear that this is would be implicit</p>