mysql外键的设置
更新:HHH   时间:2023-1-7


drop table if exists test1;
create table test1
(id int unsigned not null,
info varchar(20),

foreign key(id) references zy(id) on update cascade on delete cascade);

返回MySQL数据库教程...