关于MySQL报错 ERROR 1215 (HY000): Cannot add foreign key constraint

多余的就不说了,直接上干货。

创建表

表一(学生):

mysql> create table student(
    -> sid int auto_increment,
    -> sname varchar(10) not null,
    -> gender char(1)

你可能感兴趣的:(MySQL,mysql,数据库,sql)