我已尝试搜索此错误的修复程序,但还没有任何内容! 我写了以下查询:
Create table menuitem (
itemID int(10) not null auto_increment
, headerID int(10) not null
, itemType varchar(45)
, description varchar(300)
, price decimal(10,2)
, primary key(itemID)
, foreign key(headerID) references menuheader(headerID));
我得到错误 - 无法添加外键约束。
HeaderID字段与Menuitem表中的数据类型相同,但我仍然收到错误!
请帮忙。 (这可能是我可能错过的非常愚蠢的事情)