mysql查询未讲课教师

您所在的位置:网站首页 查询学号为108的同学成绩 mysql查询未讲课教师

mysql查询未讲课教师

2024-06-04 00:06| 来源: 网络整理| 查看: 265

1.询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。

select * from score where degree>(select degree from score where cno=3-105 and sno=109)

2.查询和学号为108、101的同学同年出生的所有学生的Sno、Sname和Sbirthday列。

select sno,sname,sbirthday

from student

where year(sbirthday)=(select year(sbirthday) from student where sno=108)

select sno,sname,sbirthday

from student

where year(sbirthday)=(select year(sbirthday) from student where sno=101)

3.查询“张旭“教师任课的学生成绩。

SELECT sno,degree from score

where cno=(select cno from course where tno =(select tno from teacher where tname="张旭") )

4.查询选修某课程的同学人数多于5人的教师姓名。

select tname from teacher

where tno in (select tno from course where cno in (select cno from score GROUP BY cno having count(*)>5))



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3