目录
5.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
10.查询李四的考试科目(c_name)和考试成绩(grade)
17.从student表和score表中查询出学生的学号,然后合并查询结果
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 limit 1,3;
- +-----+-----------+------+-------+------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+-----------+------+-------+------------+--------------------+
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
- +-----+-----------+------+-------+------------+--------------------+
- 3 rows in set (0.00 sec)
5.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
- mysql> select id,name,department from student;
- +-----+-----------+--------------+
- | id | name | department |
- +-----+-----------+--------------+
- | 901 | 张老大 | 计算机系 |
- | 902 | 张老二 | 中文系 |
- | 903 | 张三 | 中文系 |
- | 904 | 李四 | 英语系 |
- | 905 | 王五 | 英语系 |
- | 906 | 王六 | 计算机系 |
- +-----+-----------+--------------+
- 6 rows in set (0.00 sec)
6.从student表中查询计算机系和英语系的学生的信息
- mysql> select * from student where department='计算机系' or department='英语系';
- +-----+-----------+------+-------+--------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+-----------+------+-------+--------------+--------------------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
- | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +-----+-----------+------+-------+--------------+--------------------+
- 4 rows in set (0.00 sec)
7.从student表中查询年龄18~22岁的学生信息
- mysql> select * from student where 2023-birth between 10 and 22;
- Empty set (0.00 sec)
8.从student表中查询每个院系有多少人
- mysql> select department,count(*) from student group by department;
- +--------------+----------+
- | department | count(*) |
- +--------------+----------+
- | 计算机系 | 2 |
- | 中文系 | 2 |
- | 英语系 | 2 |
- +--------------+----------+
- 3 rows in set (0.00 sec)
9.从score表中查询每个科目的最高分
- mysql> select c_name,max(grade) from score group by c_name;
- +-----------+------------+
- | c_name | max(grade) |
- +-----------+------------+
- | 英语 | 94 |
- | 计算机 | 90 |
- | 中文 | 95 |
- +-----------+------------+
- 3 rows in set (0.00 sec)
10.查询李四的考试科目(c_name)和考试成绩(grade)
- mysql> select c_name,grade from score inner join student on score.stu_id=student.id where name='李四';
- +-----------+-------+
- | c_name | grade |
- +-----------+-------+
- | 计算机 | 70 |
- | 英语 | 92 |
- +-----------+-------+
- 2 rows in set (0.00 sec)
11.用连接的方式查询所有学生的信息和考试信息
- mysql> select * from score inner join student on score.stu_id=student.id;
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- | id | stu_id | c_name | grade | id | name | sex | birth | department | address |
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- | 1 | 901 | 英语 | 80 | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 |
- | 2 | 902 | 计算机 | 65 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 3 | 902 | 中文 | 88 | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 |
- | 4 | 903 | 中文 | 95 | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 |
- | 5 | 904 | 计算机 | 70 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
- | 6 | 904 | 英语 | 92 | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
- | 7 | 905 | 英语 | 94 | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 |
- | 8 | 906 | 计算机 | 90 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- | 9 | 906 | 英语 | 85 | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +----+--------+-----------+-------+-----+-----------+------+-------+--------------+--------------------+
- 9 rows in set (0.00 sec)
12.计算每个学生的总成绩
- mysql> select stu_id,name,sum(grade) from score inner join student on score.stu_id=student.id group by stu_id;
- +--------+-----------+------------+
- | stu_id | name | sum(grade) |
- +--------+-----------+------------+
- | 901 | 张老大 | 80 |
- | 902 | 张老二 | 153 |
- | 903 | 张三 | 95 |
- | 904 | 李四 | 162 |
- | 905 | 王五 | 94 |
- | 906 | 王六 | 175 |
- +--------+-----------+------------+
- 6 rows in set (0.00 sec)
13.计算每个考试科目的平均成绩
- mysql> select c_name,avg(grade) from score inner join student on score.stu_id=student.id group by c_name;
- +-----------+------------+
- | c_name | avg(grade) |
- +-----------+------------+
- | 英语 | 87.7500 |
- | 计算机 | 75.0000 |
- | 中文 | 91.5000 |
- +-----------+------------+
- 3 rows in set (0.00 sec)
14.查询计算机成绩低于95的学生信息
- mysql> select * from student inner join score on score.stu_id=student.id where grade < 75 and c_name='计算机';
- +-----+-----------+------+-------+------------+--------------------+----+--------+-----------+-------+
- | id | name | sex | birth | department | address | id | stu_id | c_name | grade |
- +-----+-----------+------+-------+------------+--------------------+----+--------+-----------+-------+
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 2 | 902 | 计算机 | 65 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 5 | 904 | 计算机 | 70 |
- +-----+-----------+------+-------+------------+--------------------+----+--------+-----------+-------+
- 2 rows in set (0.00 sec)
15.查询同时参加计算机和英语考试的学生的信息
- mysql> select * from student where id in(select stu_id from score where c_name ='计算机' and stu_id in( select stu_id from score where c_name ='英语'));
- +-----+--------+------+-------+--------------+--------------------+
- | id | name | sex | birth | department | address |
- +-----+--------+------+-------+--------------+--------------------+
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 |
- +-----+--------+------+-------+--------------+--------------------+
- 2 rows in set (0.00 sec)
16.将计算机考试成绩按从高到低进行排序
- mysql> select * from score where c_name='计算机' order by grade desc;
- +----+--------+-----------+-------+
- | id | stu_id | c_name | grade |
- +----+--------+-----------+-------+
- | 8 | 906 | 计算机 | 90 |
- | 5 | 904 | 计算机 | 70 |
- | 2 | 902 | 计算机 | 65 |
- +----+--------+-----------+-------+
- 3 rows in set (0.00 sec)
17.从student表和score表中查询出学生的学号,然后合并查询结果
- mysql> select * from student inner join score on score.stu_id=student.id;
- +-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
- | id | name | sex | birth | department | address | id | stu_id | c_name | grade |
- +-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
- | 901 | 张老大 | 男 | 1985 | 计算机系 | 北京市海淀区 | 1 | 901 | 英语 | 80 |
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 2 | 902 | 计算机 | 65 |
- | 902 | 张老二 | 男 | 1986 | 中文系 | 北京市昌平区 | 3 | 902 | 中文 | 88 |
- | 903 | 张三 | 女 | 1990 | 中文系 | 湖南省永州市 | 4 | 903 | 中文 | 95 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 5 | 904 | 计算机 | 70 |
- | 904 | 李四 | 男 | 1990 | 英语系 | 辽宁省阜新市 | 6 | 904 | 英语 | 92 |
- | 905 | 王五 | 女 | 1991 | 英语系 | 福建省厦门市 | 7 | 905 | 英语 | 94 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 8 | 906 | 计算机 | 90 |
- | 906 | 王六 | 男 | 1988 | 计算机系 | 湖南省衡阳市 | 9 | 906 | 英语 | 85 |
- +-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
- 9 rows in set (0.00 sec)
18.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
- mysql> select name,department,c_name,grade from student inner join score on score.stu_id=student.id where name like '王%' or name like '张%';
- +-----------+--------------+-----------+-------+
- | name | department | c_name | grade |
- +-----------+--------------+-----------+-------+
- | 张老大 | 计算机系 | 英语 | 80 |
- | 张老二 | 中文系 | 计算机 | 65 |
- | 张老二 | 中文系 | 中文 | 88 |
- | 张三 | 中文系 | 中文 | 95 |
- | 王五 | 英语系 | 英语 | 94 |
- | 王六 | 计算机系 | 计算机 | 90 |
- | 王六 | 计算机系 | 英语 | 85 |
- +-----------+--------------+-----------+-------+
- 7 rows in set (0.00 sec)
19.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
- mysql> select name,2023-birth,department,c_name,grade from student inner join score on score.stu_id=student.id where address like '湖南省%';
- +--------+------------+--------------+-----------+-------+
- | name | 2023-birth | department | c_name | grade |
- +--------+------------+--------------+-----------+-------+
- | 张三 | 33 | 中文系 | 中文 | 95 |
- | 王六 | 35 | 计算机系 | 计算机 | 90 |
- | 王六 | 35 | 计算机系 | 英语 | 85 |
- +--------+------------+--------------+-----------+-------+
- 3 rows in set (0.01 sec)