Is the primary key automatically indexed in MySQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:31:19Z http://stackoverflow.com/feeds/question/1071180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql 3 Is the primary key automatically indexed in MySQL? Alex Miller 2009-07-01T20:21:26Z 2009-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#1071199 5 Answer by Emil H for Is the primary key automatically indexed in MySQL? Emil H 2009-07-01T20:24:32Z 2009-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#1071203 2 Answer by Rick for Is the primary key automatically indexed in MySQL? Rick 2009-07-01T20:24:49Z 2009-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#1071206 1 Answer by Patrick Gryciuk for Is the primary key automatically indexed in MySQL? Patrick Gryciuk 2009-07-01T20:25:05Z 2009-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#1071209 0 Answer by PSU_Kardi for Is the primary key automatically indexed in MySQL? PSU_Kardi 2009-07-01T20:25:27Z 2009-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>