文章详情

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

外键

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

外键关系允许把一个数据表里的一个索引声明为另一数据表里的一个索引有关联关系,还允许对外键所在的数据表设置一些操作处理方面的约束条件。数据库根据外键关系定义的规则来维护引用完性。

MySqll里的外键支持是由InnoDB数据表处理程序提供的。

create table parent

(

par_id int not null,

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

自己参考用

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载