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