Foreign keys must be Index in mySQL?

后端 未结 3 1098
遥遥无期
遥遥无期 2021-02-14 11:47

I\'ve just created my first mySQL table on my own (other than using Joomla, Wordpress, etc.) and I am MS SQL developer for years but normally I can easily create a foreign key i

3条回答
  •  失恋的感觉
    2021-02-14 12:26

    From the documentation:

    InnoDB 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.

提交回复
热议问题