多表查询作业

1.创建student和score表
mysql> show tables;
+-------------------+
| Tables_in_t_books |
+-------------------+
| score             |
| student           |
| t_hero            |
| worker            |
| 工作日期表        |
+-------------------+
2.为student表和score表增加记录
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 | 计算机    |    90 |
| 10 |    906 | 英语      |    85 |
+----+--------+-----------+-------+
3.查询student表的所有记录
mysql> select * from student;
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |
| 903 | 张三      | 女   |  1990 | 中文系       | 湖南省永州市       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 905 | 王五      | 女   |  1991 | 英语系       | 福建省厦门市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
6 rows in set (0.00 sec)

4.查询student表的第2条到4条记录
mysql> select * from student where id BETWEEN 902 and 904;
+-----+-----------+------+-------+------------+--------------------+
| id  | name      | sex  | birth | department | address            |
+-----+-----------+------+-------+------------+--------------------+
| 902 | 张老二    | 男   |  1986 | 中文系     | 北京市昌平区       |
| 903 | 张三      | 女   |  1990 | 中文系     | 湖南省永州市       |
| 904 | 李四      | 男   |  1990 | 英语系     | 辽宁省阜新市       |
+-----+-----------+------+-------+------------+--------------------+
5.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
mysql> select `id`, `name`, `department` from student ;
+-----+-----------+--------------+
| id  | name      | department   |
+-----+-----------+--------------+
| 901 | 张老大    | 计算机系     |
| 902 | 张老二    | 中文系       |
| 903 | 张三      | 中文系       |
| 904 | 李四      | 英语系       |
| 905 | 王五      | 英语系       |
| 906 | 王六      | 计算机系     |
+-----+-----------+--------------+
6.从student表中查询计算机系和英语系的学生的信息
mysql> select * from student where department in('计算机系' ,'英语系');
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 905 | 王五      | 女   |  1991 | 英语系       | 福建省厦门市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
7.从student表中查询年龄28~32岁的学生信息
mysql> select * from student where ((2020 - birth))>=28 AND ((2020 - birth)) <= 32;
+-----+--------+------+-------+--------------+--------------------+
| id  | name   | sex  | birth | department   | address            |
+-----+--------+------+-------+--------------+--------------------+
| 903 | 张三   | 女   |  1990 | 中文系       | 湖南省永州市       |
| 904 | 李四   | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 905 | 王五   | 女   |  1991 | 英语系       | 福建省厦门市       |
| 906 | 王六   | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+--------+------+-------+--------------+--------------------+
8.从student表中查询每个院系有多少人
mysql> select department, count(*) AS "总人数" from student group by `department`;
+--------------+-----------+
| department   | 总人数    |
+--------------+-----------+
| 计算机系     |         2 |
| 中文系       |         2 |
| 英语系       |         2 |
+--------------+-----------+
9.从score表中查询每个科目的最高分
mysql> SELECT c_name, MAX(grade) AS "最高分" from score group by c_name;
+-----------+-----------+
| c_name    | 最高分    |
+-----------+-----------+
| 计算机    |        98 |
| 英语      |        94 |
| 中文      |        95 |
+-----------+-----------+
10.查询李四的考试科目(c_name)和考试成绩(grade)
mysql> select name, c_name, grade from student, score where student.id = score.stu_id and student.id = 904;
+--------+-----------+-------+
| name   | c_name    | grade |
+--------+-----------+-------+
| 李四   | 计算机    |    70 |
| 李四   | 英语      |    92 |
+--------+-----------+-------+
11.用连接的方式查询所有学生的信息和考试信息
mysql> select * from student, score where student.id = score.stu_id;
+-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
| id  | name      | sex  | birth | department   | address            | id | stu_id | c_name    | grade |
+-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |  1 |    901 | 计算机    |    98 |
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |  2 |    901 | 英语      |    80 |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |  3 |    902 | 计算机    |    65 |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |  4 |    902 | 中文      |    88 |
| 903 | 张三      | 女   |  1990 | 中文系       | 湖南省永州市       |  5 |    903 | 中文      |    95 |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |  6 |    904 | 计算机    |    70 |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |  7 |    904 | 英语      |    92 |
| 905 | 王五      | 女   |  1991 | 英语系       | 福建省厦门市       |  8 |    905 | 英语      |    94 |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |  9 |    906 | 计算机    |    90 |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       | 10 |    906 | 英语      |    85 |
+-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
12.计算每个学生的总成绩
mysql> SELECT student.id,name,SUM(grade) FROM student,score WHERE student.id=score.stu_id GROUP BY id;
+-----+-----------+------------+
| id  | name      | SUM(grade) |
+-----+-----------+------------+
| 901 | 张老大    |        178 |
| 902 | 张老二    |        153 |
| 903 | 张三      |         95 |
| 904 | 李四      |        162 |
| 905 | 王五      |         94 |
| 906 | 王六      |        175 |
+-----+-----------+------------+
13.计算每个考试科目的平均成绩
mysql> select c_name, AVG(grade) AS"平均成绩" from score GROUP BY c_name;
+-----------+--------------+
| c_name    | 平均成绩     |
+-----------+--------------+
| 计算机    |      80.7500 |
| 英语      |      87.7500 |
| 中文      |      91.5000 |
+-----------+--------------+
14.查询计算机成绩低于95的学生信息
mysql> SELECT * FROM student WHERE id IN (SELECT stu_id FROM score WHERE c_name="计算机" and grade<95);
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
15.查询同时参加计算机和英语考试的学生的信息
mysql> SELECT a.* FROM student a ,score b ,score c WHERE a.id=b.stu_id  AND b.c_name='计算机'  AND a.id=c.stu_id  AND c.c_name='英语';
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
16.将计算机考试成绩按从高到低进行排序
select * from score
    -> where c_name = "计算机"
    -> ORDER BY grade desc;
+----+--------+-----------+-------+
| id | stu_id | c_name    | grade |
+----+--------+-----------+-------+
|  1 |    901 | 计算机    |    98 |
|  9 |    906 | 计算机    |    90 |
|  6 |    904 | 计算机    |    70 |
|  3 |    902 | 计算机    |    65 |
+----+--------+-----------+-------+
17.从student表和score表中查询出学生的学号,然后合并查询结果
mysql> select id from student UNION  select stu_id from score;
+-----+
| id  |
+-----+
| 901 |
| 902 |
| 903 |
| 904 |
| 905 |
| 906 |
+-----+
18.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
mysql> SELECT student.id, name,sex,birth,department, address, c_name,grade FROM student, score WHERE (name LIKE  '张%'  OR name LIKE  '王%')  AND student.id=score.stu_id ;
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| id  | name      | sex  | birth | department   | address            | c_name    | grade |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       | 计算机    |    98 |
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       | 英语      |    80 |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       | 计算机    |    65 |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       | 中文      |    88 |
| 903 | 张三      | 女   |  1990 | 中文系       | 湖南省永州市       | 中文      |    95 |
| 905 | 王五      | 女   |  1991 | 英语系       | 福建省厦门市       | 英语      |    94 |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       | 计算机    |    90 |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       | 英语      |    85 |
+-----+-----------+------+-------+--------------+--------------------+-----------+-------+
19.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩    
mysql> SELECT student.id, name,sex,birth,department, address, c_name,grade FROM student, score WHERE address LIKE '湖南%'   AND student.id=score.stu_id;
+-----+--------+------+-------+--------------+--------------------+-----------+-------+
| id  | name   | sex  | birth | department   | address            | c_name    | grade |
+-----+--------+------+-------+--------------+--------------------+-----------+-------+
| 903 | 张三   | 女   |  1990 | 中文系       | 湖南省永州市       | 中文      |    95 |
| 906 | 王六   | 男   |  1988 | 计算机系     | 湖南省衡阳市       | 计算机    |    90 |
| 906 | 王六   | 男   |  1988 | 计算机系     | 湖南省衡阳市       | 英语      |    85 |
+-----+--------+------+-------+--------------+--------------------+-----------+-------+

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值