mysql第三次作业

#(1)分别查询student表和score表的所有记录
mysql> select * from student;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
6 rows in set (0.00 sec)

mysql> select * from score;
+----+--------+--------+-------+
| id | stu_id | c_name | grade |
+----+--------+--------+-------+
|  1 |    901 | 计算机 |    98 |
|  2 |    901 | 英语   |    80 |
|  3 |    902 | 计算机 |    65 |
|  4 |    902 | 中文   |    88 |
|  5 |    903 | 中文   |    95 |
|  6 |    904 | 计算机 |    70 |
|  7 |    904 | 英语   |    92 |
|  8 |    905 | 英语   |    94 |
|  9 |    906 | 计算机 |    49 |
| 10 |    906 | 英语   |    83 |
+----+--------+--------+-------+
10 rows in set (0.00 sec)

#(2)查询student表的第2条到5条记录
mysql> select * from student limit 2,3;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
+-----+--------+------+-------+------------+--------------+
3 rows in set (0.00 sec)

#(3)从student表中查询计算机系和英语系的学生的信息
mysql> select * from student where department='计算机系' or department='英语系';
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
4 rows in set (0.00 sec)

#(4)从student表中查询年龄小于22岁的学生信息
mysql> select * from student where (year(now())-birth)<22;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |
+-----+--------+------+-------+------------+--------------+
2 rows in set (0.01 sec)

#(5)从student表中查询每个院系有多少人
mysql> select department,count(id) from student group by department;
+------------+-----------+
| department | count(id) |
+------------+-----------+
| 计算机系   |         2 |
| 中文系     |         2 |
| 英语系     |         2 |
+------------+-----------+
3 rows in set (0.00 sec)

#(6)从score表中查询每个科目的最高分
mysql> select c_name,max(grade) from score group by c_name;
+--------+------------+
| c_name | max(grade) |
+--------+------------+
| 计算机 |         98 |
| 英语   |         94 |
| 中文   |         95 |
+--------+------------+
3 rows in set (0.00 sec)

#(7)查询李广昌的考试科目(c_name)和考试成绩(grade)
mysql> select c_name,grade from score join student on score.stu_id=student.id where name='李广昌';
+--------+-------+
| c_name | grade |
+--------+-------+
| 计算机 |    70 |
| 英语   |    92 |
+--------+-------+
2 rows in set (0.00 sec)

#(8)用连接的方式查询所有学生的信息和考试信息
mysql> select a.*,b.id,b.c_name,b.grade from student a join score b on a.id=b.stu_id;
+-----+--------+------+-------+------------+--------------+----+--------+-------+
| id  | name   | sex  | birth | department | address      | id | c_name | grade |
+-----+--------+------+-------+------------+--------------+----+--------+-------+
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |  1 | 计算机 |    98 |
| 901 | 张三丰 | 男   |  2002 | 计算机系   | 北京市海淀区 |  2 | 英语   |    80 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |  3 | 计算机 |    65 |
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |  4 | 中文   |    88 |
| 903 | 张思维 | 女   |  2003 | 中文系     | 湖南省永州市 |  5 | 中文   |    95 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |  6 | 计算机 |    70 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |  7 | 英语   |    92 |
| 905 | 王翰   | 男   |  2004 | 英语系     | 福建省厦门市 |  8 | 英语   |    94 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |  9 | 计算机 |    49 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 | 10 | 英语   |    83 |
+-----+--------+------+-------+------------+--------------+----+--------+-------+
10 rows in set (0.00 sec)

#(9)计算每个学生的总成绩
mysql> select student.id,student.name,sum(grade) '总成绩' from student join score on student.id=score.stu_id group by student.id;
+-----+--------+--------+
| id  | name   | 总成绩 |
+-----+--------+--------+
| 901 | 张三丰 |    178 |
| 902 | 周全有 |    153 |
| 903 | 张思维 |     95 |
| 904 | 李广昌 |    162 |
| 905 | 王翰   |     94 |
| 906 | 王心凌 |    132 |
+-----+--------+--------+
6 rows in set (0.00 sec)

#(10)计算每个考试科目的平均成绩
mysql> select c_name,avg(grade) from score group by c_name;
+--------+------------+
| c_name | avg(grade) |
+--------+------------+
| 计算机 |    70.5000 |
| 英语   |    87.2500 |
| 中文   |    91.5000 |
+--------+------------+
3 rows in set (0.00 sec)

#(11)查询计算机成绩低于95的学生信息
mysql> select a.* from student a join score b on a.id=b.stu_id where b.c_name='计算机' and b.grade < 95;
+-----+--------+------+-------+------------+--------------+
| id  | name   | sex  | birth | department | address      |
+-----+--------+------+-------+------------+--------------+
| 902 | 周全有 | 男   |  2000 | 中文系     | 北京市昌平区 |
| 904 | 李广昌 | 男   |  1999 | 英语系     | 辽宁省皋新市 |
| 906 | 王心凌 | 女   |  1998 | 计算机系   | 湖南省衡阳市 |
+-----+--------+------+-------+------------+--------------+
3 rows in set (0.00 sec)

#(12)将计算机考试成绩按从高到低进行排序
mysql> select c_name,grade from score where c_name='计算机' order by grade desc;
+--------+-------+
| c_name | grade |
+--------+-------+
| 计算机 |    98 |
| 计算机 |    70 |
| 计算机 |    65 |
| 计算机 |    49 |
+--------+-------+
4 rows in set (0.00 sec)

#(13)从student表和score表中查询出学生的学号,然后合并查询结果
mysql> select id from student union select stu_id from score;
+-----+
| id  |
+-----+
| 901 |
| 902 |
| 903 |
| 904 |
| 905 |
| 906 |
+-----+
6 rows in set (0.00 sec)

#(14)查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
mysql> select a.name,a.department,b.c_name,b.grade from student a join score b on a.id=b.stu_id where a.name like '张%' or a.name like '王%';
+--------+------------+--------+-------+
| name   | department | c_name | grade |
+--------+------------+--------+-------+
| 张三丰 | 计算机系   | 计算机 |    98 |
| 张三丰 | 计算机系   | 英语   |    80 |
| 张思维 | 中文系     | 中文   |    95 |
| 王翰   | 英语系     | 英语   |    94 |
| 王心凌 | 计算机系   | 计算机 |    49 |
| 王心凌 | 计算机系   | 英语   |    83 |
+--------+------------+--------+-------+
6 rows in set (0.00 sec)

#(15)查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
mysql> select a.name,(year(now())-birth) '年龄',a.department,b.c_name,b.grade from student a join score b on a.id=b.stu_id where a.address like '湖南%';
+--------+------+------------+--------+-------+
| name   | 年龄 | department | c_name | grade |
+--------+------+------------+--------+-------+
| 张思维 |   21 | 中文系     | 中文   |    95 |
| 王心凌 |   26 | 计算机系   | 计算机 |    49 |
| 王心凌 |   26 | 计算机系   | 英语   |    83 |
+--------+------+------------+--------+-------+
3 rows in set (0.00 sec)

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值