What does this mean and how can I fix it?
|
|
You have two separate indexes on the same field of your table ( Just drop one of them to resolve this issue. EDIT: Perhaps I should explain this a bit more: Having a In order to deal with this, most (all?) decent database engines will implicitly create indexes for such fields, so that they can quickly detect if a value already exists in the table, without having to scan all its rows. As a result, manually creating indexes on fields declared |
|||||||||||
|
|
It looks to me that it's saying both of these indices have the exact same properties and just have different Keynames, having two indices will create extra storage space as well as run-time to inserts (there is no reason to do this that I can think of) more detail on the topic can be found here: http://dev.mysql.com/doc/refman/5.0/en/mysql-indexes.html http://dev.mysql.com/doc/refman/5.0/en/create-index.html the PRIMARY one is created by phpMyAdmin I believe and it appears the index one was created manually, but is a duplication of work. |
|||
|
|
|
When I create a table like this:
Why will it create two indices? |
|||
|
|