tags:

views:

69

answers:

1

Is it true that in MySQL the primary key is automatically indexed?

+6  A: 

Yes it is true. An index is required to enforce the unique constraint on primary keys.

Daniel Vassallo