MySQL语句练习题(持续更新~)

表名和字段

–1.学生表

        Student(s_id,s_name,s_birth,s_sex) --学生编号,学生姓名, 出生年月,学生性别

–2.课程表

        Course(c_id,c_name,t_id) – --课程编号, 课程名称, 教师编号

–3.教师表

        Teacher(t_id,t_name) --教师编号,教师姓名

–4.成绩表

        Score(s_id,c_id,s_score) --学生编号,课程编号,分数

 建表并插入数据

##  建表
-- 学生表
CREATE TABLE `Student`
(`s_id`    VARCHAR(20),`s_name`  VARCHAR(20) NOT NULL DEFAULT '',`s_birth` VARCHAR(20) NOT NULL DEFAULT '',`s_sex`   VARCHAR(10) NOT NULL DEFAULT '',PRIMARY KEY (`s_id`)
);-- 课程表
CREATE TABLE `Course`
(`c_id`   VARCHAR(20),`c_name` VARCHAR(20) NOT NULL DEFAULT '',`t_id`   VARCHAR(20) NOT NULL,PRIMARY KEY (`c_id`)
);-- 教师表
CREATE TABLE `Teacher`
(`t_id`   VARCHAR(20),`t_name` VARCHAR(20) NOT NULL DEFAULT '',PRIMARY KEY (`t_id`)
);-- 成绩表
CREATE TABLE `Score`
(`s_id`    VARCHAR(20),`c_id`    VARCHAR(20),`s_score` INT(3),PRIMARY KEY (`s_id`, `c_id`)
);-- 插入学生表测试数据
insert into Student
values ('01', '赵雷', '1990-01-01', '男');
insert into Student
values ('02', '钱电', '1990-12-21', '男');
insert into Student
values ('03', '孙风', '1990-05-20', '男');
insert into Student
values ('04', '李云', '1990-08-06', '男');
insert into Student
values ('05', '周梅', '1991-12-01', '女');
insert into Student
values ('06', '吴兰', '1992-03-01', '女');
insert into Student
values ('07', '郑竹', '1989-07-01', '女');
insert into Student
values ('08', '王菊', '1990-01-20', '女');-- 插入课程表测试数据
insert into Course
values ('01', '语文', '02');
insert into Course
values ('02', '数学', '01');
insert into Course
values ('03', '英语', '03');-- 插入教师表测试数据
insert into Teacher
values ('01', '张三');
insert into Teacher
values ('02', '李四');
insert into Teacher
values ('03', '王五');-- 插入成绩表测试数据
insert into Score
values ('01', '01', 80);
insert into Score
values ('01', '02', 90);
insert into Score
values ('01', '03', 99);
insert into Score
values ('02', '01', 70);
insert into Score
values ('02', '02', 60);
insert into Score
values ('02', '03', 80);
insert into Score
values ('03', '01', 80);
insert into Score
values ('03', '02', 80);
insert into Score
values ('03', '03', 80);
insert into Score
values ('04', '01', 50);
insert into Score
values ('04', '02', 30);
insert into Score
values ('04', '03', 20);
insert into Score
values ('05', '01', 76);
insert into Score
values ('05', '02', 87);
insert into Score
values ('06', '01', 31);
insert into Score
values ('06', '03', 34);
insert into Score
values ('07', '02', 89);
insert into Score
values ('07', '03', 98);

练习题和SQL

##练习题和sql语句
-- 1、查询"01"课程比"02"课程成绩高的学生的信息及课程分数
select stu.*, sc1.s_score 01_score, sc2.s_score 02_score
from student stu,score sc1,score sc2
where stu.s_id = sc1.s_idand stu.s_id = sc2.s_idand sc1.c_id = '01'and sc2.c_id = '02'and sc1.s_score > sc2.s_score;# 也可以用这种
select a.*, b.s_score as 01_score, c.s_score as 02_score
from student ajoin score b on a.s_id = b.s_id and b.c_id = '01'left join score c on a.s_id = c.s_id and c.c_id = '02'
where b.s_score > c.s_score;-- 2、查询"01"课程比"02"课程成绩低的学生的信息及课程分数
select a.*, b.s_score 01_score, c.s_score 02_score
from student ajoin score b on a.s_id = b.s_id and b.c_id = '01'left join score c on c.s_id = a.s_id and c.c_id = '02'
where b.s_score < c.s_score;# 也可以这种
select a.*, b.s_score 01_score, c.s_score c_score
from student a,score b,score c
where a.s_id = b.s_idand a.s_id = c.s_idand b.c_id = '01'and c.c_id = '02'and b.s_score < c.s_score;-- 3、查询平均成绩大于等于60分的同学的学生编号和学生姓名和平均成绩
select a.s_id, a.s_name, avg(b.s_score)
from student aleft join score b on a.s_id = b.s_id
group by a.s_id, a.s_name
having avg(b.s_score) > 60;-- 4、查询平均成绩小于60分的同学的学生编号和学生姓名和平均成绩
-- (包括有成绩的和无成绩的)
# 这一句只能查出成绩表中有成绩的学生的数据
# select a.s_id, a.s_name, avg(b.s_score)
# from student a
#          left join score b on a.s_id = b.s_id
# group by a.s_id
# having avg(b.s_score) < 60;# 用 union
# UNION运算符用于组合两个或更多SELECT语句的结果集。
# UNION中的每个SELECT语句必须具有相同的列数
#
select a.s_id, a.s_name, avg(b.s_score)
from student aleft join score b on a.s_id = b.s_id
group by a.s_id
having avg(b.s_score) < 60
union
select a.s_id, a.s_name, 0
from student a
where a.s_id not in (select distinct s_id from score);-- 5、查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩
select a.s_id, a.s_name, count(b.s_id) sum_course, sum(b.s_score)
from student aleft join score b on a.s_id = b.s_id
group by a.s_id;-- 6、查询"李"姓老师的数量
select count(*)
from teacher t
where t.t_name like '李%';-- 7、查询学过"张三"老师授课的同学的信息
-- 先查出姓名为“张三”的老师的t_id  01
-- 再查出t_id为01的课程c_id
-- 再判断score表 c_id
select a.*
from student aleft join questions.score b on a.s_id = b.s_id
where b.c_id in (select c_id from course where t_id = (select t_id from teacher where t_name = '张三'));
-- 用这种好像也可以查出来
select a.*
from student aleft join questions.score b on a.s_id = b.s_id
where b.c_id = (select c_id from course where t_id = (select t_id from teacher where t_name = '张三'));
-- 用这种好像也可以查出来
select a.*
from student aleft join questions.score b on a.s_id = b.s_idleft join questions.course c on b.c_id = c.c_idleft join questions.teacher t on c.t_id = t.t_id
where t_name = '张三';-- 8、查询没学过"张三"老师授课的同学的信息
-- 先查出姓名为“张三”的老师的t_id  01
-- 再查出t_id为01的课程c_id
-- 再判断score表 c_id
select *
from student c
where c.s_id not in (select a.s_idfrom student ajoin score b on a.s_id = b.s_idwhere b.c_id in (select a.c_idfrom course ajoin teacher b on a.t_id = b.t_idwhere t_name = '张三'));
-- 可以这么写
select c.*
from student c
where c.s_id not in (select a.s_idfrom student aleft join questions.score b on a.s_id = b.s_idwhere b.c_id =(select c_id from course where t_id = (select t_id from teacher where t_name = '张三')));-- 9、查询学过编号为"01"并且也学过编号为"02"的课程的同学的信息
select a.*
from student a,score b,score c
where a.s_id = b.s_idand a.s_id = c.s_idand b.c_id = '01'and c.c_id = '02';
-- 也可以这么写
select a.*
from student aleft join score b on a.s_id = b.s_idleft join score s on a.s_id = s.s_id
where b.c_id = '01' && s.c_id = '02';-- 10、查询学过编号为"01"但是没有学过编号为"02"的课程的同学的信息
-- 自己想的逻辑,多此一举了,条件里不需要连接查询,
-- select * from student a, score b where a.s_id = b.s_id and b.c_id = '01' ;
-- select * from student a, score b where a.s_id = b.s_id and b.c_id = '02';
-- select c.* from student c where c.s_id not in (select a.s_id from student a, score b where a.s_id = b.s_id and b.c_id = '02') and c.s_id in (select a.s_id from student a, score b where a.s_id = b.s_id and b.c_id = '01') ;
-- 直接查score表查出满足条件的s_id即可
select a.*
from student a
where a.s_id in (select s_id from score where c_id = '01')and a.s_id not in (select s_id from score where c_id = '02');-- 11、查询没有学全所有课程的同学的信息
-- 查出所有课程数:select count(*) from course;
-- 根据s_id分组查出课程数量小于全部课程数量的学生
select a.*
from student aleft join score b on a.s_id = b.s_id
group by a.s_id
having count(b.c_id) < (select count(*) from course);
-- 也可以这么写,查出学所有课程学生的s_id,判断不在里面的
select *
from student
where s_id not in (select s_id from score t1 group by s_id having count(*) = (select count(distinct c_id) from course));-- 12、查询至少有一门课与学号为"01"的同学所学相同的同学的信息
-- 查询学号为01的同学信息:select * from student a left join score b on a.s_id = b.s_id where a.s_id = '01';
select distinct c.*
from student cleft join score d on c.s_id = d.s_id
where d.c_id in (select b.c_idfrom student aleft join score b on a.s_id = b.s_idwhere a.s_id = '01')and d.s_id != '01';
-- 也可以这么写
select *
from student
where s_id in (select distinct a.s_id from score a where a.c_id in (select a.c_id from score a where a.s_id = '01'))and s_id != '01';-- 13、查询和"01"号的同学学习的课程完全相同的其他同学的信息
SELECT *
FROM Student
WHERE s_id IN (SELECT s_idFROM ScoreGROUP BY s_idHAVING COUNT(s_id) = (#下面的语句是找到'01'同学学习的课程数SELECT COUNT(c_id)FROM ScoreWHERE s_id = '01'))AND s_id NOT IN (#下面的语句是找到学过‘01’同学没学过的课程,有哪些同学。并排除他们SELECT s_idFROM ScoreWHERE c_id IN (#下面的语句是找到‘01’同学没学过的课程SELECT DISTINCT c_idFROM ScoreWHERE c_id NOT IN (#下面的语句是找出‘01’同学学习的课程SELECT c_idFROM ScoreWHERE s_id = '01'))GROUP BY s_id) #下面的条件是排除01同学AND s_id NOT IN ('01');
-- 也可以这样
SELECT t3.*
FROM (SELECT s_id,group_concat(c_id ORDER BY c_id) group1FROM scoreWHERE s_id > '01'GROUP BY s_id) t1INNER JOIN (SELECT group_concat(c_id ORDER BY c_id) group2FROM scoreWHERE s_id = '01'GROUP BY s_id) t2 ON t1.group1 = t2.group2INNER JOIN student t3 ON t1.s_id = t3.s_id;-- 14、查询没学过"张三"老师讲授的任一门课程的学生姓名
-- 先查张三老师的t_id,在course表的c_id
-- select t_id from teacher where t_name = '张三';
-- select c_id from course where t_id = '01';
-- select s_id from score where c_id = '02';
select s_name
from student
where s_id not in (select s_idfrom scorewhere c_id =(select c_id from course where t_id = (select t_id from teacher where t_name = '张三')));-- 15、查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩
-- 查询有两门或两门以上不及格的s_id: select s_id from score where s_score < 60 GROUP BY s_id having count(*) >= 2;
select a.s_id, a.s_name, AVG(b.s_score)
from student aleft join score b on a.s_id = b.s_id
where a.s_id in (select s_id from score where s_score < 60 GROUP BY s_id having count(*) >= 2)
GROUP BY a.s_id;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/239756.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【AI】人工智能复兴的推进器之机器学习

目录 一、机器学习的定义 二、机器学习的发展历程 2.1 萌芽期&#xff08;20世纪50年代-60年代&#xff09; 2.2 符号主义时期&#xff08;20世纪60年代-80年代&#xff09; 2.3 统计学习时期&#xff08;20世纪90年代-21世纪初&#xff09; 2.4 深度学习时期&#xff08…

深度剖析Ajax实现方式(原生框架、JQuery、Axios,Fetch)

Ajax学习 简介&#xff1a; ​ Ajax 代表异步 JavaScript 和 XML&#xff08;Asynchronous JavaScript and XML&#xff09;的缩写。它指的是一种在网页开发中使用的技术&#xff0c;通过在后台与服务器进行数据交换&#xff0c;实现页面内容的更新&#xff0c;而无需刷新整个…

高级算法设计与分析(六) -- 分支限界法

系列文章目录 高级算法设计与分析&#xff08;一&#xff09; -- 算法引论 高级算法设计与分析&#xff08;二&#xff09; -- 递归与分治策略 高级算法设计与分析&#xff08;三&#xff09; -- 动态规划 高级算法设计与分析&#xff08;四&#xff09; -- 贪心算法 高级…

RIPV1配置实验

查看路由器路由表&#xff1a; 删除手工配置的静态路由项&#xff1a; Route1->Config->static Remove删除路由项 删除Route3的路由项&#xff0c;方法同上删除Route2的路由项&#xff0c;方法同上 完成路由器RIP配置&#xff1a; Route1->Config->RIP->Ne…

lv12 根文件系统12

目录 1 根文件系统 2 BusyBox 3 实验九 3.1 在 busybox 官网下载 busybox 源码&#xff08;这里我们下载 busybox-1.22.1.tar.bz2&#xff09; 3.2 拷贝 busybox 源码包到 ubuntu 的家目录下&#xff0c;解压并进入其顶层目录 3.3 进入 busybox 配置界面&#xff08;…

新零售模式:重新定义商业未来

随着科技的飞速发展&#xff0c;我们的生活方式正在经历着前所未有的变革。其中&#xff0c;新零售模式正逐渐成为商业领域的新热点&#xff0c;它正在重新定义我们的购物方式&#xff0c;并为企业带来更多的商业机会。 一、新零售模式概述 新零售模式是指将互联网、大数据、…

在 Windows 中关闭指定端口的方法

方法一&#xff1a;使用命令行&#xff08;Command Prompt&#xff09; 查找端口占用情况 打开命令提示符&#xff08;Command Prompt&#xff09;并输入以下命令来查找占用指定端口的进程&#xff1a; netstat -aon|findstr "<port_number>" 这里的 <p…

[已解决] Ubuntu远程桌面闪退+登录显示“远程桌面由于数据加密错误 , 这个会话将结束“

两个月前&#xff0c;由于跑代码在Ubuntu配置环境&#xff0c;乱七八糟的下载了很多东西&#xff0c;导致了一系列问题..... 问题1 Ubuntu远程桌面闪退 实验室有两台服务器&#xff0c;IP后三位分别为141和142&#xff0c;其中141在输入密码后立即闪退&#xff0c;142可以正常…

Linux下 自定义多线程并发快速压缩解压缩脚本

文章目录 自定义多线程压缩解压缩脚本使用 Linux下 自定义多线程并发快速压缩解压缩脚本 Linux下常用的tar工具无法支持并行 压缩和解压&#xff0c;对于大量小文件的解压缩&#xff0c;可借助pigz工具实现多线程并行工作&#xff0c;实现更为高效的压缩和解压缩。 自定义多线…

【分享】4个方法打开PDF文件

PDF是很多人工作中经常使用的电子文档格式&#xff0c;但是可能有些刚接触的小伙伴不知道用什么工具来打开PDF文件&#xff0c;今天小编就来分享一下4种常用的工具。 1. 使用浏览器 只要有电脑基本都会安装一到两款浏览器&#xff0c;其实浏览器也可以用来打开PDF文件。 只需…

B2122 单词翻转

B2122 单词翻转 [B2122 单词翻转]&#xff08;https://www.luogu.com.cn/problem/B2122?contestId150480 B2122 单词翻转 题意 输入一串字符&#xff0c;将它倒着输出&#xff0c;但是&#xff0c;单词之间要换行&#xff0c;才能输出。 思路 先写for循环&#xff0c;在往上…

python 用OpenCV 将图片转视频

import os import cv2 import numpy as npcv2.VideoWriter&#xff08;&#xff09;参数 cv2.VideoWriter() 是 OpenCV 中用于创建视频文件的类。它的参数如下&#xff1a; filename&#xff1a;保存视频的文件名。 fourcc&#xff1a;指定视频编解码器的 FourCC 代码&#xf…

经常使用的排序算法

一、直接插入排序 #include <stdio.h>void insert_sort(int arr[], int n){int i, j, tmp;for (i 1; i < n; i){tmp arr[i];j i - 1;while (j > 0 && arr[j] > tmp){ // 将要插入的元素与数组中的元素比较&#xff08;从后向前比&#xff09;arr[j …

Redis可视化工具Redis Desktop Manager mac功能特色

Redis Desktop Manager mac是一款非常实用的Redis可视化工具。RDM支持SSL / TLS加密&#xff0c;SSH隧道&#xff0c;基于SSH隧道的TLS&#xff0c;为您提供了一个易于使用的GUI&#xff0c;可以访问您的Redis数据库并执行一些基本操作&#xff1a;将键视为树&#xff0c;CRUD键…

【springboot】功能合集

目录 全局监听请求&#xff1a;HandlerInterceptor创建拦截器类添加拦截器拦截器类调用Service服务 全局异常处理&#xff1a;ExceptionHandler统一处理业务异常自定义JsonResult 全局跨域配置&#xff1a;WebMvcConfigurer静态(static)方法中调用接口&#xff08;Service层&am…

PDF.js介绍以及使用

一、PDF.js是什么 PDF.js是一个JavaScript库&#xff0c;可以在现代Web浏览器中渲染和显示PDF文件。它的主要作用是将PDF文件转换为HTML5格式&#xff0c;以便在浏览器上进行展示和交互。 PDF.js的主要功能包括&#xff1a; 在浏览器中显示PDF&#xff1a;PDF.js使用HTML5的…

hab_virtio hypervisor 虚拟化

Linux的 I / O 虚拟化 Virtio 框架 简而言之&#xff0c;virtio是半虚拟化管理程序中设备上的抽象层。virtio由Rusty Russell开发以支持他自己的虚拟化解决方案lguest。本文从准虚拟化和仿真设备的介绍开始&#xff0c;然后探讨的细节virtio。重点是virtio2.6.30内核发行版中的…

Pytorch:torch.sum()函数用法

torch.sum() 先看看官网描述&#xff1a;https://pytorch.org/docs/stable/generated/torch.sum.html#torch.sum 函数torch.sum有两种形式&#xff1a; 第一种&#xff1a;   torch.sum(input, *, dtypeNone) → Tensor .   Returns the sum of all elements in the inp…

【华为数据之道学习笔记】6-4 打造数据供应的“三个1”

数据服务改变了传统的数据集成方式&#xff0c;所有数据都通过服务对外提供&#xff0c;用户不再直接集成数据&#xff0c;而是通过服务获取。因此&#xff0c;数据服务应该拉动数据供应链条的各个节点&#xff0c;以方便用户能准确地获取数据为重要目标。 数据供应到消费的完整…

Deployment Controller详解(上)

上一篇在《Kubectl 部署无状态应用》中介绍了如何使用 Deployment 部署五个 hello world 实例时&#xff0c;我们并没有详细探讨 Deployment Controller 的各项功能。因此&#xff0c;本文将深入介绍 Deployment Controller 的作用以及它能够完成的任务。 本文来自官方文档梳理…