mysql 中数据库参照完整性设定
1. 数据库的主键和外键类型一定要一致;
2.数据库中的表的类型要是InnoDB类型的,可在配置文件中加上:default-table-type=InnoDB
3.
alter table table2 add constraint FK_Reference_1 foreign key (foreignID)
references table1 (ID) on delete CASCADE on update restrict;
红色标记不能用restrict