码迷,mamicode.com
首页 > 数据库 > 详细

mysql操作-外键

时间:2018-07-13 17:50:36      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:sub   关联   pre   mysql操作   ima   _id   tab   foreign   ble   

1.创建外键,关联两个表

create table score(
    id int not null auto_increment,
    subject char(32) not null,
    stu_id int not null,
    primary key(id),
    key fk_stu_key (stu_id),
    constraint fk_stu_key foreign key (stu_id) references student (stu_id));

mysql操作-外键

标签:sub   关联   pre   mysql操作   ima   _id   tab   foreign   ble   

原文地址:http://blog.51cto.com/13803166/2141837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!