湘裳 2022-11-17 22:05 采纳率: 80%
浏览 8
已结题

mysql,外键设置相关问题,如图中第三个表,不知道怎么建

图中第三个表,score,前面两个我都弄好了,这个外键不会,他没有要求哪里关联哪里

img

  • 写回答

2条回答 默认 最新

  • 萌面超人me 2022-11-17 23:01
    关注

    新建表

    create table scroe(
    stu_id char(6) not null primary key comment '学号',
    course_id char(4) not null primary key comment '课程编号',
    score int(3) not null comment '成绩',
    constraint 'fk_stu_id' foreign key(stu_id) references  students(stu_id),
    constraint 'fk_course_id' foreign key(course_id) references  courses(course_id)
    )
    

    如果你已经建了表

    alter table scroe add constraint 'fk_stu_id' foreign key(stu_id) references  courses(course_id);
    alter table scroe add constraint 'fk_course_id' foreign key(course_id) references  courses(course_id);
    

    如有帮助,请点击我的回答下方的【采纳该答案】按钮帮忙采纳下,谢谢!

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 11月26日
  • 已采纳回答 11月18日
  • 创建了问题 11月17日

悬赏问题

  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器