MySQL cannot create foreign key constraint

后端 未结 12 2145
夕颜
夕颜 2020-12-08 12:39

I\'m having some problems creating a foreign key to an existing table in a mysql database.

I have the table exp:

+-------------+--------         


        
相关标签:
12条回答
  • 2020-12-08 13:05

    The exact order of the primary key also needs to match with no extra columns in between.

    I had a primary key setup where the column order actually matches, but the problem was the primary key had an extra column in it that is not part of the foreign key of the referencing table

    e.g.) table 2, column (a, b, c) -> table 1, column (a, b, d, c) -- THIS FAILS

    I had to reorder the primary key columns so that not only they're ordered the same way, but have no extra columns in the middle:

    e.g.) table 2, column (a, b, c) -> table 1, column (a, b, c, d) -- THIS SUCCEEDS

    0 讨论(0)
  • 2020-12-08 13:08

    In my case, it turned out the referenced column wasn't declared primary or unique.

    https://stackoverflow.com/a/18435114/1763217

    0 讨论(0)
  • 2020-12-08 13:10

    This error can also occur, if the references table and the current table don't have the same character set.

    0 讨论(0)
  • 2020-12-08 13:13

    Just throwing this into the mix of possible causes, I ran into this when the referencing table column had the same "type" but did not have the same signing.

    In my case, the referenced table colum was TINYINT UNSIGNED and my referencing table column was TINYINT SIGNED. Aligning both columns solved the issue.

    0 讨论(0)
  • 2020-12-08 13:15

    According to http://dev.mysql.com/doc/refman/5.5/en/create-table-foreign-keys.html

    MySQL requires indexes on foreign keys and referenced keys so that foreign key checks can be fast and not require a table scan. In the referencing table, there must be an index where the foreign key columns are listed as the first columns in the same order.

    InnoDB permits a foreign key to reference any index column or group of columns. However, in the referenced table, there must be an index where the referenced columns are listed as the first columns in the same order.

    So if the index in referenced table is exist and it is consists from several columns, and desired column is not first, the error shall be occurred.

    The cause of our error was due to violation of following rule:

    Corresponding columns in the foreign key and the referenced key must have similar data types. The size and sign of integer types must be the same. The length of string types need not be the same. For nonbinary (character) string columns, the character set and collation must be the same.

    0 讨论(0)
  • 2020-12-08 13:15

    As mentioned @Anton, this could be because of the different data type. In my case I had primary key BIGINT(20) and tried to set foreight key with INT(10)

    0 讨论(0)
提交回复
热议问题