mysql练习题

1.查询Score表中成绩在60到80之间的所有记录

select * from scores where degree > 60 and degree < 80;

2.查询 score 表中成绩为85,86或88的记录

select * from scores where degree = 85 or degree = 86 or degree = 88;

3.以 cno 升序、degree降序查询 score 表的所有记录

select * from scores order by cno asc , degree desc ;

4.查询“95031”班的学生人数

select count(*) from students where class = "95031";

5.查询Score表中的最高分的学生学号和课程号

select sno,cno from scores order by degree desc limit 1;

6.查询‘3-105’号课程的平均分

select avg(degree) from scores where cno = '3-105' ;

7.查询Score表中至少有5名学生选修的并以3开头的课程的平均分数

select cno , avg(degree) from scores where cno like '3%' GROUP BY cno having count(*) > 5;

8.查询所有学生的Sname、Cno和Degree列

select sname ,cno , degree from students stu , scores sc where stu.sno = sc.sno

9.查询所有学生的Sno、Cname和Degree列。

select sc.sno, co.cname, degree from scores sc ,courses co where sc.cno = co.cno;

10.查询所有学生的Sname、Cname和Degree列

select st.sname Sname , sc.degree Degree , co.cname Cname from scores sc , students st, courses co where sc.sno = st.sno and sc.cno = co.cno;

select st.sname Sname , sc.degree Degree , co.cname Cname from scores sc join (students st ,courses co) on sc.sno = st.sno and sc.cno = co.cno;

11.查询“95033”班所选课程的平均分

select cno ,avg(sc.degree) from students st join scores sc on st.sno = sc.sno where class = '95033' group by cno ORDER BY cno desc;

12.查询所有同学的Sno、Cno和rank列

select sc.sno,sc.cno,gr.rank from scores sc join grade gr on sc.degree >= gr.low and sc.degree <= gr.upp order by gr.rank;

13.查询所有同学的sname、sno 、cno、cname和rank列

select st.sname,sc.sno,co.cname,sc.cno,gr.rank from scores sc join (students st ,courses co,grade gr) on sc.sno = st.sno and sc.cno = co.cno and sc.degree BETWEEN gr.low and gr.upp order by gr.rank;

14.查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录

select * from scores where cno = '3-105'and degree > (select degree from scores where sno = '109' and cno = '3-105') order by degree;

select sc1.cno ,sc1.sno,sc1.degree,sc1.id from scores sc1 join scores sc2 on sc1.degree > sc2.degree and sc2.sno = '109'and sc2.cno = '3-105' WHERE sc1.cno = '3-105'

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

select s1.sno,s1.sname,s1.sbirthday from students s1 join students s2 on year(s1.sbirthday) = year(s2.sbirthday) and s2.sno = '108' where s1.sno != '108'

select sno, sname, sbirthday FROM students WHERE sno != '108' and YEAR(sbirthday) = (SELECT YEAR(sbirthday)FROM students WHERE sno = '108');

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

select sc.cno ,sc.degree,sc.sno from teachers t join (courses co,scores sc) on t.tno = co.tno and co.cno = sc.cno where t.tname = '张旭'

SELECT * FROM scores WHERE cno =(SELECT cno FROM courses JOIN teachers ON courses.tno = teachers.tno AND tname = '张旭');

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

select t.tname from teachers t join courses co on t.tno = co.tno and co.cno = (select cno from scores GROUP BY cno having count(*) > 5);

18.查询95033班和95031班全体学生的记录

select * from students where class in ('95033','95031')

19.查询存在有85分以上成绩的课程Cno

SELECT DISTINCT cno from scores where degree > 85

select cno from scores GROUP BY cno having max(degree) > 85

20.查询出“计算机系“教师所教课程的成绩表。

select t.depart,co.cname ,sc.degree,sc.sno from teachers t join (courses co , scores sc) on t.tno =co.tno and co.cno = sc.cno where t.depart = '计算机系'

SELECT * FROM scores WHERE cno IN (SELECT cno FROM courses, teachers WHERE depart = '计算机系' AND courses.tno = teachers.tno);

21.查询所有教师和同学的name、sex和birthday。

SELECT tname name ,tsex sex ,tbirthday birthday from teachers union select sname name ,ssex sex ,sbirthday birthday from students

22.查询所有“女”教师和“女”同学的name、sex和birthday

SELECT tname name ,tsex sex ,tbirthday birthday from teachers where teachers.tsex = '女' union select sname name ,ssex sex ,sbirthday birthday from students where students.sno = '女'

23.查询成绩比该课程平均成绩低的同学的成绩表。

select * from scores sc1 where sc1.degree < (select avg(sc2.degree) from scores sc2 where sc1.cno = sc2.cno )

24.查询所有任课教师的Tname和Depart

select t.tname ,t.depart from teachers t where t.tno in (select distinct courses.tno from scores join courses on scores.cno = courses.cno )

select distinct t.tname ,t.depart from teachers t join (scores sc,courses co) on sc.cno = co.cno and co.tno = t.tno

25.查询至少有2名男生的班号

select class from students where ssex = '男' group by class having count(ssex) > 1

26.查询Student表中不姓“王”的同学记录。

select * from students where sname not like '王%'

27.查询Student表中每个学生的姓名和年龄。

select sname,(year(now()) - year(sbirthday)) as age from students

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351