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 in MS SQL but I came across a difficulty or lack of knowledge here.
Here is my tables :
users
- user_id int primary auto_increment
- username varchar(20)
- password varchar(20)
posts
- post_id in primary auto_increment
- title varchar(100)
- message text
- user_id int
When I try to add a foreign key to users which refers to posts->user_id
, I cannot see the posts->user_id
option in the option list Relation_view window on mySQL panel.
I am wondering whether I should define posts->user_id
as Index
or something? If so, why?
From the MySQL Reference Manual:
In contrast to SQL Server, which does not require FKs to be indexed... however the recommendations that I've seen suggest that you almost always being indexing your FKs even though it isn't required.
Short answer: Yes, MySQL forces you to index foreign key.
You can read more about foreign keys on MySQL documentation pages: http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html
From the documentation: