1. 创建表的同时添加外键
- create table score(
- score int(3),
- st_id int(16),
- cs_id int(16),
- primary key(st_id,cs_id),
- FOREIGN KEY (st_id) REFERENCES student(id),
- FOREIGN KEY (cs_id) REFERENCES classes(id)
- );
复制代码 2. 已经创建表了怎么办:在表的定义外举行添加
- alter table 表名 add constraint FK_ID foreign key(你的外键字段名) REFERENCES 外表表名(对应的表的主键字段名);
复制代码 3.直接在属性值后面添加
- create table score(
- cscore int(11),
- st_id int(50) references student(id),
- cs_id int(30) references classes(id),
- primary key(st_id,cs_id)
- );
复制代码 4.添加约束
- create table score(
- cscore int(11),
- st_id int(50),
- cs_id int(30),
- primary key(st_id,cs_id),
- CONSTRAINT `FK_ID_ST` FOREIGN KEY (st_id) REFERENCES student(id),
- CONSTRAINT `FK_ID_CS` FOREIGN KEY (cs_id) REFERENCES classes(id)
- );
复制代码 参考:sql增编削查基本语句 - 百度文库
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |