千家信息网

mysql外键的设置

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,drop table if exists test1;create table test1(id int unsigned not null,info varchar(20),foreign key(
千家信息网最后更新 2025年01月20日mysql外键的设置

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);

0