sql查询练习

二、多表查询 



create table student (
id int not null unique primary key,
name varchar(20) not null,
sex varchar(4),
birth year,
department varchar(20),
address varchar(50)
);

create table score (
id int not null unique primary key auto_increment,
stu_id int not null,
c_name varchar(20),
grade int(10)
);


INSERT INTO student VALUES( 901,'张老大', '男',1985,'计算机系', '北京市海淀区');
INSERT INTO student VALUES( 902,'张老二', '男',1986,'中文系', '北京市昌平区');
INSERT INTO student VALUES( 903,'张三', '女',1990,'中文系', '湖南省永州市');
INSERT INTO student VALUES( 904,'李四', '男',1990,'英语系', '辽宁省阜新市');
INSERT INTO student VALUES( 905,'王五', '女',1991,'英语系', '福建省厦门市');
INSERT INTO student VALUES( 906,'王六', '男',1988,'计算机系', '湖南省衡阳市');

INSERT INTO score VALUES(NULL,901, '计算机',98);
INSERT INTO score VALUES(NULL,901, '英语', 80);
INSERT INTO score VALUES(NULL,902, '计算机',65);
INSERT INTO score VALUES(NULL,902, '中文',88);
INSERT INTO score VALUES(NULL,903, '中文',95);
INSERT INTO score VALUES(NULL,904, '计算机',70);
INSERT INTO score VALUES(NULL,904, '英语',92);
INSERT INTO score VALUES(NULL,905, '英语',94);
INSERT INTO score VALUES(NULL,906, '计算机',90);
INSERT INTO score VALUES(NULL,906, '英语',85);


1.查询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)


2.查询student表的第2条到4条记录

mysql> select * from student  
    -> limit 3 offset 1;
+-----+-----------+------+-------+------------+--------------------+
| id  | name      | sex  | birth | department | address            |
+-----+-----------+------+-------+------------+--------------------+
| 902 | 张老二    | 男   |  1986 | 中文系     | 北京市昌平区       |
| 903 | 张三      | 女   |  1990 | 中文系     | 湖南省永州市       |
| 904 | 李四      | 男   |  1990 | 英语系     | 辽宁省阜新市       |
+-----+-----------+------+-------+------------+--------------------+
3 rows in set (0.00 sec)

mysql> 


3.从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)


4.从student表中查询计算机系和英语系的学生的信息

mysql> select * from studentwhere department in ('计算机系', '英语系');
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 905 | 王五      | 女   |  1991 | 英语系       | 福建省厦门市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
4 rows in set (0.00 sec)

mysql> 


5.从student表中查询年龄35~40岁的学生信息

mysql> select * from student where 2023-birth between 35 and 40;
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 901 | 张老大    | 男   |  1985 | 计算机系     | 北京市海淀区       |
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
3 rows in set (0.00 sec)


6.从student表中查询每个院系有多少人

mysql> select department, count(*) as total from student group by department;
+--------------+-------+
| department   | total |
+--------------+-------+
| 计算机系     |     2 |
| 中文系       |     2 |
| 英语系       |     2 |
+--------------+-------+
3 rows in set (0.00 sec)

mysql> 


7.从score表中查询每个科目的最高分

mysql> select c_name, max(grade) as max_grade from score group by c_name;
+-----------+-----------+
| c_name    | max_grade |
+-----------+-----------+
| 计算机    |        98 |
| 英语      |        94 |
| 中文      |        95 |
+-----------+-----------+
3 rows in set (0.00 sec)

mysql> 


8.查询李四的考试科目(c_name)和考试成绩(grade)

mysql> select c_name, grade from score whereE stu_id = 904;
+-----------+-------+
| c_name    | grade |
+-----------+-------+
| 计算机    |    70 |
| 英语      |    92 |
+-----------+-------+
2 rows in set (0.00 sec)

mysql> 


9.用连接的方式查询所有学生的信息和考试信息

mysql> select * from student  
    -> join score on 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 |
+-----+-----------+------+-------+--------------+--------------------+----+--------+-----------+-------+
10 rows in set (0.00 sec)


10.计算每个学生的总成绩

mysql> select stu_id, sum(grade) as total_score from score group by stu_id;
+--------+-------------+
| stu_id | total_score |
+--------+-------------+
|    901 |         178 |
|    902 |         153 |
|    903 |          95 |
|    904 |         162 |
|    905 |          94 |
|    906 |         175 |
+--------+-------------+
6 rows in set (0.00 sec)


11.计算每个考试科目的平均成绩

mysql> select c_name, avg(grade) as avg_score from score  group by c_name;
+-----------+-----------+
| c_name    | avg_score |
+-----------+-----------+
| 计算机    |   80.7500 |
| 英语      |   87.7500 |
| 中文      |   91.5000 |
+-----------+-----------+
3 rows in set (0.00 sec)


12.查询计算机成绩低于95的学生信息

mysql> select * from student where id in (selectT stu_id from score where c_name="计算机" and grade<95);
+-----+-----------+------+-------+--------------+--------------------+
| id  | name      | sex  | birth | department   | address            |
+-----+-----------+------+-------+--------------+--------------------+
| 902 | 张老二    | 男   |  1986 | 中文系       | 北京市昌平区       |
| 904 | 李四      | 男   |  1990 | 英语系       | 辽宁省阜新市       |
| 906 | 王六      | 男   |  1988 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
3 rows in set (0.01 sec)


13.查询同时参加计算机和英语考试的学生的信息

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 | 计算机系     | 湖南省衡阳市       |
+-----+-----------+------+-------+--------------+--------------------+
3 rows in set (0.00 sec)

mysql> 


14.将计算机考试成绩按从高到低进行排序

mysql> select stu_id, grade from score where c_name = '计算机' order by grade desc;
+--------+-------+
| stu_id | grade |
+--------+-------+
|    901 |    98 |
|    906 |    90 |
|    904 |    70 |
|    902 |    65 |
+--------+-------+
4 rows in set (0.00 sec)

mysql> 


15.从student表和score表中查询出学生的学号,然后合并查询结果

mysql> select a.id, a.name, b.c_name, b.grade  
    -> from student a  
    -> join score b on a.id = b.stu_id;
+-----+-----------+-----------+-------+
| id  | name      | c_name    | grade |
+-----+-----------+-----------+-------+
| 901 | 张老大    | 计算机    |    98 |
| 901 | 张老大    | 英语      |    80 |
| 902 | 张老二    | 计算机    |    65 |
| 902 | 张老二    | 中文      |    88 |
| 903 | 张三      | 中文      |    95 |
| 904 | 李四      | 计算机    |    70 |
| 904 | 李四      | 英语      |    92 |
| 905 | 王五      | 英语      |    94 |
| 906 | 王六      | 计算机    |    90 |
| 906 | 王六      | 英语      |    85 |
+-----+-----------+-----------+-------+
10 rows in set (0.01 sec)

mysql> 


16.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩

mysql> select student.name, student.department, score.c_name, score.grade  
    -> from student  
    -> join score on student.id = score.stu_id  
    -> where student.name like '张%' or student.name like '王%';
+-----------+--------------+-----------+-------+
| name      | department   | c_name    | grade |
+-----------+--------------+-----------+-------+
| 张老大    | 计算机系     | 计算机    |    98 |
| 张老大    | 计算机系     | 英语      |    80 |
| 张老二    | 中文系       | 计算机    |    65 |
| 张老二    | 中文系       | 中文      |    88 |
| 张三      | 中文系       | 中文      |    95 |
| 王五      | 英语系       | 英语      |    94 |
| 王六      | 计算机系     | 计算机    |    90 |
| 王六      | 计算机系     | 英语      |    85 |
+-----------+--------------+-----------+-------+
8 rows in set (0.01 sec)

mysql> 


17.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩

mysql> select student.name, student.department, score.c_name, score.grade  
    -> from student  
    -> join score on student.id = score.stu_id  
    -> where student.address like '%湖南%';
+--------+--------------+-----------+-------+
| name   | department   | c_name    | grade |
+--------+--------------+-----------+-------+
| 张三   | 中文系       | 中文      |    95 |
| 王六   | 计算机系     | 计算机    |    90 |
| 王六   | 计算机系     | 英语      |    85 |
+--------+--------------+-----------+-------+
3 rows in set (0.00 sec)

mysql> 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

电力小子sp

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值