文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>外键测试

外键测试

时间:2005-04-12  来源:ydz5

DROP TABLE IF EXISTS child;
DROP TABLE IF EXISTS parent;

DROP TABLE IF EXISTS child;
DROP TABLE IF EXISTS parent;

# creat table start
create table parent
(
 par_id int not null,
 primary key (par_id)
) type = innodb;


create table child
(
 par_id int not null,
 child_id int not null,
 primary key (par_id,child_id),
 foreign key (par_id) references parent (par_id) on delete cascade
) type = innodb;

# creat table end

# insert strat

insert into parent (par_id) values (1),(2),(3);
insert into child (par_id,child_id) values (1,1),(1,2);
insert into child (par_id,child_id) values (2,1),(2,2),(2,3);
insert into child (par_id,child_id) values (3,1);

# insert end

相关阅读 更多 +
排行榜 更多 +
沙盒堡垒大逃杀

沙盒堡垒大逃杀

休闲益智 下载
隐形大师

隐形大师

休闲益智 下载
暴打老板5

暴打老板5

休闲益智 下载