vote up 5 vote down star
1

The subject says it all...

flag

38% accept rate

3 Answers

vote up 6 vote down check

Yes, but only on Innodb. Innodb is the only currently shipped table format that has foreign keys implemented

link|flag
Do you have any reason to believe that MySQL will ever allow foreign keys on non-indexed columns for any other table type? – Robert Gamble Nov 20 '08 at 4:38
I really couldn't answer that. You may want to look up the Maria and Falcon storage engines that are to be released in MySQL 6.0 and see if they support foreign keys on non-indexed columns. – Grant Limberg Nov 20 '08 at 6:08
vote up 0 vote down

Apparently an index is created automatically as specified in the address robert has posted.

"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. Such an index is created on the referencing table automatically if it does not exist. (This is in contrast to some older versions, in which indexes had to be created explicitly or the creation of foreign key constraints would fail.) index_name, if given, is used as described previously."

http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.