假设有必修课成绩表course,每位学生的期末考试成绩以及补考成绩都录入到...
发布于 2022-03-02 16:08:45
假设有必修课成绩表course,每位学生的期末考试成绩以及补考成绩都录入到course表中,学号为20190001的同学想查询一下自己未通过的课程的课程编号与课程名称,那么下面正确的sql语句是
create table `course`(`id` int(11) not null auto_increment,`sid` int(11) not null comment '学号',`cid` int(11) not null comment '课程编号',`cname` char(50) not null comment '课程名称',`score` int(11) not null comment '分数',primary key(`id`))engine = innodb
登录后免费查看答案
关注者
0
被浏览
35