I tested your statements on MySQL 5.5.29, and they work fine. Note that both tables must use the InnoDB storage engine for foreign keys to be supported. If they aren't, MySQL will parse but ignore the declaration of these constraints.
On my instance, the default storage engine is InnoDB. Your CREATE TABLE statements don't specify the storage engine, so they will use the default. Check what the default storage engine is in your environment:
mysql> show global variables like 'default_storage_engine';
+------------------------+--------+
| Variable_name | Value |
+------------------------+--------+
| default_storage_engine | InnoDB |
+------------------------+--------+
Check the storage engine used by your tables with SHOW TABLE STATUS LIKE '%physician%'. Look at the Engine column of the output:
+-----------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+
| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |
+-----------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+
| physician_role | InnoDB | 10 | Compact | 0 | 0 | 16384 | 0 | 16384 | 0 | 1 | 2013-02-25 15:56:26 | NULL | NULL | latin1_swedish_ci | NULL | | |
| visit_physician | InnoDB | 10 | Compact | 0 | 0 | 16384 | 0 | 16384 | 0 | NULL | 2013-02-25 15:56:26 | NULL | NULL | latin1_swedish_ci | NULL | | |
+-----------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+
If the Engine is MyISAM or another storage engine, it's likely that creation of the constraint will not work.
If you want to change the storage engine to InnoDB, you can do this:
mysql> ALTER TABLE visit_physician ENGINE=InnODB;
mysql> ALTER TABLE physician_role ENGINE=InnODB;
Then you should be able to re-execute the creation of the constraint. However, if the tables already have data that doesn't satisfy the constraint, it could cause problems.
But before any such change, I would encourage you to test that your application still works with the different storage engine. It's very likely that it will work fine, but testing is always a good idea.
What happens when you try to add the foreign key? If it gives an error like this:
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint
fails (`test`.`#sql-c67_52`, CONSTRAINT `FK_roleid` FOREIGN KEY (`physician_role`)
REFERENCES `physician_role` (`id`) ON DELETE CASCADE ON UPDATE CASCADE)
then you could have some values already in the tables that don't satisfy the constraint.
Other possibilities about storage engine and data type could cause the error too, but we have ruled that out because you say the tables are both InnoDB and the data types appear the same, and it works when I test it.
InnoDB– Explosion Pills Feb 25 at 23:54SHOW TABLE STATUSwill tell you the engine. You would also not be able to do theALTERif there are existing rows that would cause an integrity constraint violatin – Explosion Pills Feb 26 at 0:03