执行我的代码不会导致错误,也不会在此服务器上创建预期的键: id int not null auto_increment primary key,columnName int not null, foreign key (columnName) references table1(id) on delete cascade编
我在mysql中创建了两个表,
house表,其中houseID是我的客户表中的外键。创建客户表( id int null主键auto_increment,名称varchar null,houseId int null,telephoneNo,int null,约束外键(houseId)级联上引用name (Id));创建name表(id int主键auto_increment,houseNo int null,address varchar null);