Mysql——查询sql语句练习

一、单表查询


素材: 表名:worker-- 表中字段均为中文,比如 部门号 工资 职工号 参加工作 等

1、显示所有职工的基本信息。
select * from worker;
2、查询所有职工所属部门的部门号,不显示重复的部门号。
select distinct 部门号 from worker;
3、求出所有职工的人数。
select count("职工号") as 人数 from worker;
4、列出最高工和最低工资。
select min(工资),max(工资) from worker;
5、列出职工的平均工资和总工资。
 select avg(工资) 平均工资,sum(工资) 总工资 from worker;
6、创建一个只有职工号、姓名和参加工作的新表,名为工作日期表。 
create table work_day(
    职工号 int(11) not null,
    姓名 varchar(20) not null,
    参加工作 text not null,
    primary key(职工号)
);
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1001,'张三','会计','男');
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1002,'李四','Java工程师','男');
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1003,'王亮','Java工程师','男');
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1004,'赵六','网络工程师','男');
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1005,'钱七','会计','女');
mysql> insert into work_day(职工号,姓名,参加工作,性别) values(1006,'孙八','运维工程师','女');
7、显示所有女职工的年龄。
 select worker.姓名,year(now())-year(出生日期) as 年龄 from worker inner join work_day on(worker.职工号=work_day.职工号) where 性别='女';
8、列出所有姓张的职工的职工号、姓名和出生日期。
select 职工号,姓名,工作时间 from worker where 姓名 like '张%';
 select 职工号,姓名,工作时间 from worker where left(姓名,1)='张';
9、列出1960年以前出生s职工的姓名、参加工作日期。
 select 姓名,工作时间 from worker where year(出生日期)<1960;
10、列出工资在1000-2000之间的所有职工姓名。
 select 姓名 from worker where 工资>1000 and 工资<2000;
11、列出所有陈姓和李姓的职工姓名。
select 职工号,姓名,工作时间 from worker where left(姓名,1)='陈'or left(姓名,1)='李';
 select 职工号,姓名,工作时间 from worker where 姓名 like '李%' or '陈%';
12、列出所有部门号为102和103的职工号、姓名、党员否。
 select 职工号,姓名,政治面貌 from worker where 部门号=102 or 部门号=103;
13、将职工表worker中的职工按出生的先后顺序排序。
select * from worker order by 出生日期 asc;
14、显示工资最高的前3名职工的职工号和姓名。 
select 职工号,姓名 from worker order by 工资 desc limit 3;
15、求出各部门党员的人数。
 select distinct(部门号),count(政治面貌) as 党员人数 from worker where 政治面貌='党员' group by 部门号;
16、统计各部门的工资和平均工资
 select distinct(部门号),sum(工资) as 工资,avg(工资) as 平均工资 from worker group by  部门号;
17、列出总人数大于4的部门号和总人数。
select distinct(部门号),count(职工号) as 总人数 from worker group by 部门号 having count(职工号)>=4;

二、多表查询


1.创建student和score表
CREATE  TABLE student (
id  INT(10)  NOT NULL  UNIQUE  PRIMARY KEY ,
name  VARCHAR(20)  NOT NULL ,
sex  VARCHAR(4) ,
birth  YEAR,
department  VARCHAR(20) ,
address  VARCHAR(50)
);
创建score表。SQL代码如下:
CREATE  TABLE score (
id  INT(10)  NOT NULL  UNIQUE  PRIMARY KEY  AUTO_INCREMENT ,
stu_id  INT(10)  NOT NULL ,
c_name  VARCHAR(20) ,
grade  INT(10)
);
2.为student表和score表增加记录
向student表插入记录的INSERT语句如下:
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,'计算机系', '湖南省衡阳市');
向score表插入记录的INSERT语句如下:
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);

3.查询student表的所有记录
select * from student;
4.查询student表的第2条到4条记录
select * from student limit 1,3;
5.从student表查询所有学生的学号(id)、姓名(name)和院系(department)的信息
 select id,name,department from student;
6.从student表中查询计算机系和英语系的学生的信息
 select * from student where department='计算机系' or department='英语系';
7.从student表中查询年龄18~22岁的学生信息
 select * from student where (year(now())-birth)>18 and (year(now())-birth)<22;
8.从student表中查询每个院系有多少人
select distinct(department),count(id) as 人数 from student group by department;
9.从score表中查询每个科目的最高分
select c_name ,max(grade) as 最高分 from score group by c_name;
10.查询李四的考试科目(c_name)和考试成绩(grade)
> select score.c_name,score.grade from score inner join student on(student.id=score.stu_id) where student.name='李四';
11.用连接的方式查询所有学生的信息和考试信息
 select * from score inner join student on(student.id=score.stu_id);
12.计算每个学生的总成绩select student.name,sum(score.grade) as 总成绩 from score inner join student on(student.id=score.stu_id) group by student.name;
13.计算每个考试科目的平均成绩
select c_name,avg(grade) as average from score group by c_name;
14.查询计算机成绩低于95的学生信息
select * from score inner join student on(score.stu_id=student.id) where score.c_name='计算机'and score.grade<95;
15.查询同时参加计算机和英语考试的学生的信息
select * from student,(select * from score where c_name='英语') as s1 inner join (select * from score where c_name='计算机') as s2 on s1.stu_id=s2.stu_id where student.id=s1.stu_id;
16.将计算机考试成绩按从高到低进行排序
select grade from score where c_name='计算机' order by grade desc;
17.从student表和score表中查询出学生的学号,然后合并查询结果
select * from score inner join student on(student.id=score.stu_id);
18.查询姓张或者姓王的同学的姓名、院系和考试科目及成绩
 select student.name,student.department,score.c_name,score.grade from score inner join student on(student.id=score.stu_id) where student.name like '张%' or student.name like '王%';
19.查询都是湖南的学生的姓名、年龄、院系和考试科目及成绩
select student.name,student.birth,student.department,score.c_name,score.grade from score inner join student on(student.id=score.stu_id) where student.address like '湖南%';
 
select student.name,student.birth,student.department,score.c_name,score.grade from score inner join student on(student.id=score.stu_id) where left(student.address,2)= '湖南';

 三.面试题

create table student2(
    s_id int(10) not null unique primary key   comment '学号',
    s_name varchar(20) not null comment '姓名',
    s_birth date not null comment '生日',
    s_sex enum("男", "女") default "男" comment '性别'
)comment ='学生表';
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (001, '潘帅', '2002-9-14', '男');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (002, '王美丽', '2004-1-14', '女');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (003, '张帅', '2012-5-4', '男');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (004, '李帅', '2002-5-4', '男');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (005, '吴美', '1999-4-10', '女');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (006, '李七', '2006-7-14', '男');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (007, '张六', '2001-9-14', '男');
INSERT INTO student2 (s_id,s_name,s_birth,s_sex) VALUES (008,'吴雪', '2008-1-24', '女');

create table course(
    c_id int(10) not null unique primary key AUTO_INCREMENT comment '课程编号',
    c_name varchar(20) not null comment '课程名称',
    t_id int(10) not null comment '教师编号',
    foreign key(t_id) references teacher(t_id)
)comment ='课程表';
INSERT INTO course(c_id,c_name,t_id) VALUES (null, '计算机',01 );
INSERT INTO course(c_id,c_name,t_id) VALUES (null, '英语',02 );
INSERT INTO course(c_id,c_name,t_id) VALUES (null, '数学',03 );

create table teacher(
    t_id int(10) not null unique primary key comment '教师编号',
    t_name varchar(20) not null comment '姓名'
)comment='教师表';
insert into teacher values('01' , '张三');
insert into teacher values('02' , '李四');
insert into teacher values('03' , '王五');

create table score2(
    s_id int(10) comment '学号',
    c_id int(10) comment '课程编号',
    s_score decimal(18,1) comment '成绩'
)comment='成绩表';

insert into score2 values('001' , '01' , 80);
insert into score2 values('001' , '02' , 90);
insert into score2 values('001' , '03' , 99);
insert into score2 values('002' , '01' , 70);
insert into score2 values('002' , '02' , 60);
insert into score2 values('002' , '03' , 80);
insert into score2 values('003' , '01' , 80);
insert into score2 values('003' , '02' , 80);
insert into score2 values('003' , '03' , 80);
insert into score2 values('004' , '01' , 50);
insert into score2 values('004' , '02' , 30);
insert into score2 values('004' , '03' , 20);
insert into score2 values('005' , '01' , 76);
insert into score2 values('005' , '02' , 87);
insert into score2 values('006' , '01' , 31);
insert into score2 values('006' , '03' , 34);
insert into score2 values('007' , '02' , 89);
insert into score2 values('007' , '03' , 98);
insert into score2 values('008' , '02' , 79);
insert into score2 values('008' , '03' , 68);


查询所有学生的学号、姓名、选课数、总成绩。 
select student2.s_id,student2.s_name,r.选课数,r.总成绩 from student2,(select score2.s_id,sum(score2.s_score) as 总成绩,count(score2.s_score) as 选课数 from score2 group by score2.s_id) as r where student2.s_id=r.s_id;

查询学过"张三"老师所教的所有课程的同学的学号和姓名。
 select student2.s_id,student2.s_name from student2,score2,teacher,course where student2.s_id=score2.s_id and course.t_id=teacher.t_id and score2.c_id=course.c_id and teacher.t_name='张三';

查询和'02'号同学学习的课程完全相同的其他同学学号和姓名。
不会写

使用分段[100-85],[85-70],[70-60],[<60]来统计各科成绩,分别统计各分数段的人数:课程ID和课程名称
select course.c_name, course.c_id,
sum(case when score2.s_score<=100 and score2.s_score>85 then 1 else 0 end) as "[100-85]",
sum(case when score2.s_score<=85 and score2.s_score>70 then 1 else 0 end) as "[85-70]",
sum(case when score2.s_score<=70 and score2.s_score>60 then 1 else 0 end) as "[70-60]",
sum(case when score2.s_score<=60 and score2.s_score>0 then 1 else 0 end) as "[60-0]"
from score2 left join course
on score2.c_id = course.c_id
group by score2.c_id;

四.


create table departments(
    dept_no varchar(10) not null,
    dept_name varchar(10) not null
);
insert into departments values('d001','Marketing');
insert into departments values('d002','Finance');

create table dept_emp(
    emp_no int(20) not null,
    dept_no varchar(10) not null,
    from_date date not null,
    to_date date not null
);
insert into dept_emp values(10001,'d001','2001-06-22','9999-01-01');
insert into dept_emp values(10002,'d001','1996-08-03','9999-01-01');
insert into dept_emp values(10003,'d002','1996-08-03','9999-01-01');

create table salaries(
    emp_no int(20) not null,
    salary int(20) not null,
    from_date date not null,
    to_date date not null
);
insert into salaries values(10003,85097,'2001-06-22','2002-06-22');
insert into salaries values(10001,88958,'1996-08-03','9999-01-01');
insert into salaries values(10002,72527,'1996-08-03','9999-01-01');
insert into salaries values(10003,32323,'1996-08-03','9999-01-01');

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

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

相关文章

使用Chrome浏览器进行网页截图

在需要截图的网页上&#xff0c;按F12打开开发调试页面&#xff0c;再按下ShiftCtrlP&#xff0c;打开命令输入框&#xff0c;输入Capture&#xff0c; 此时会弹出4中截图模式&#xff0c;我个人比较喜欢用Capture full size screenshot Capture area screenshot&#xff0c;…

2023年中国纸箱机械优点、市场规模及发展前景分析[图]

纸箱机械行业是指涉及纸箱生产和加工的机械设备制造、销售和相关服务的产业。这个行业的主要任务是设计、制造和提供用于生产各种类型和规格纸箱的机械设备&#xff0c;以满足包装行业对纸箱的不同需求。 纸箱机械行业优点 资料来源&#xff1a;共研产业咨询&#xff08;共研网…

将语义分割的标注mask转为目标检测的bbox

1. 语义分割标签 1.1 labelme工具 语义分割的标签是利用labelme工具进行标注的,标注的样式如下: 1.2 语义分割的标签样式 2. 转换语义分割的标注到目标检测的bbox 实现步骤 (1) 利用标注的json文件生成mask图片(2) 在mask图片中找到目标的bbox矩形框的左上角点和右下角点(…

d3dx9_43.dll丢失怎么解决,四个解决方法帮你解决d3dx9_43.dll丢失

随着科技的不断发展&#xff0c;我们越来越依赖各种软件和硬件设备来提高生活和工作效率。然而&#xff0c;有时候我们可能会遇到一些技术问题&#xff0c;如“d3dx9_43.dll丢失”的问题。这个问题可能导致某些程序无法正常运行&#xff0c;给我们的生活带来诸多不便。因此&…

java中的容器(集合),HashMap底层原理,ArrayList、LinkedList、Vector区别,hashMap加载因子0.75原因

一、java中的容器 集合主要分为Collection和Map两大接口&#xff1b;Collection集合的子接口有List、Set&#xff1b;List集合的实现类有ArrayList底层是数组、LinkedList底层是双向非循环列表、Vector&#xff1b;Set集合的实现类有HashSet、TreeSet&#xff1b;Map集合的实现…

优化销售策略,突破企业全面预算管理难题

传统的企业年度销售计划往往会消耗企业内部人员很多精力和时间&#xff0c;比如需要收集数据、处理电子表格、确定项目优先级、预测未来发展以及为次年的费用制定预算等。然而随着这些繁琐的工作不断进行&#xff0c;其中的准确性和价值也受到了一定的怀疑。虽然销售计划仍按着…

【API篇】五、Flink分流合流API

文章目录 1、filter算子实现分流2、分流&#xff1a;使用侧输出流3、合流&#xff1a;union4、合流&#xff1a;connect5、connect案例 分流&#xff0c;很形象的一个词&#xff0c;就像一条大河&#xff0c;遇到岸边有分叉的&#xff0c;而形成了主流和测流。对于数据流也一样…

智能电表上的模块发热正常吗?

智能电表是一种可以远程抄表、计费、控制和管理的电力计量设备&#xff0c;它可以实现智能化、信息化和网络化的电力用电管理。智能电表的主要组成部分包括电能计量模块、通信模块、控制模块和显示模块等。其中&#xff0c;通信模块和控制模块是智能电表的核心部件&#xff0c;…

虹科 | 解决方案 | 机械免拆压力测试方案

对于发动机的气门卡滞或气门开闭时刻错误、活塞环磨损、喷油嘴泄漏/堵塞等故障&#xff0c;往往需要解体发动机或拆卸部件才能发现&#xff1b;而对于某些轻微的故障&#xff0c;即使解体了发动机后也经常难于肉眼判别 虹科Pico提供的WPS500压力测试方案&#xff0c;可以动态测…

为什么索引要用B+树来实现呢,而不是B树

首先&#xff0c;常规的数据库存储引擎&#xff0c;一般都是采用 B 树或者 B树来实现索引的存储。 B树 因为 B 树是一种多路平衡树&#xff0c;用这种存储结构来存储大量数据&#xff0c;它的整个高度会相比二叉树来说&#xff0c;会矮很多。 而对于数据库来说&#xff0c;所有…

修改echarts的tooltip样式 折线图如何配置阴影并实现渐变色和自适应

图片展示 一、引入echarts 这里不用多解释 vue里使用 import echarts from “echarts”; html页面引用js文件或用script标签引用 二、定义一个具有宽高的dom div <div id"echart-broken" style"width:400px;height: 200px;"></div>三、定义…

layui框架实战案例(21):layui table单元格显示图片导致复选框冗余的解决方案

图片自适应表格CSS 为防止单元格内的图片不能正常显示&#xff0c;需本地重写CSS。 /*layui-table图片自适应*/ .layui-table-cell {height: auto;line-height: 20px;}.layui-table-cell img {height: 50%;max-width: 50%; }列代码 , cols: [[{type: checkbox,fixed:left, w…

非科班,补基础

大家好&#xff0c;我是大彬~ 今天跟大家分享知识星球小伙伴关于【非科班转码如何补基础】的提问。 往期星球提问整理&#xff1a; 读博&#xff1f;找工作&#xff1f; 性格测试真的很重要 想找一份实习工作&#xff0c;需要准备什么 球友提问&#xff1a; 大彬大佬&#xf…

Vue 3使用 Iconify 作为图标库与图标离线加载的方法、 Icones 开源在线图标浏览库的使用

之前一直naive-ui搭配使用的是xicons&#xff0c;后来发现Iconify支持的图标合集更多&#xff0c;因此转而使用Iconify。 与FontAwesome不同的是&#xff0c;Iconify配合Icones相当于是一个合集&#xff0c;Iconify提供了快捷引入图标的方式&#xff0c;而Icones是一个大的图标…

数据结构与算法-(10)---列表(List)

&#x1f308;write in front&#x1f308; &#x1f9f8;大家好&#xff0c;我是Aileen&#x1f9f8;.希望你看完之后&#xff0c;能对你有所帮助&#xff0c;不足请指正&#xff01;共同学习交流. &#x1f194;本文由Aileen_0v0&#x1f9f8; 原创 CSDN首发&#x1f412; 如…

力扣每日一题52:N皇后问题||

题目描述&#xff1a; n 皇后问题 研究的是如何将 n 个皇后放置在 n n 的棋盘上&#xff0c;并且使皇后彼此之间不能相互攻击。 给你一个整数 n &#xff0c;返回 n 皇后问题 不同的解决方案的数量。 示例 1&#xff1a; 输入&#xff1a;n 4 输出&#xff1a;2 解释&#…

【微信小程序】后台数据交互于WX文件使用

目录 一、前期准备 1.1 数据库准备 1.2 后端数据获取接口编写 1.3 前端配置接口 1.4 封装微信的request请求 二、WXS文件的使用 2.1 WXS简介 2.2 WXS使用 三、后台数据交互完整代码 3.1 WXML 3.2 JS 3.3 WXSS 效果图 一、前期准备 1.1 数据库准备 创建数据库&…

TX Text Control.NET 32.0 For WPF

TX Text Control 支持VISUAL STUDIO 2022、.NET 5 和 .NET 6 支持 .NET WPF 应用程序的文档处理 将文档编辑、创建和 PDF 生成添加到您的 WPF 应用程序中。 视窗用户界面 功能齐全的文档编辑器 TX Text Control 是一款完全可编程的丰富编辑控件&#xff0c;它在专为 Visual Stu…

同步网盘选择指南:哪个同步网盘更好用?

同步盘是当下热门的云存储服务之一&#xff0c;它可以将您的文件在不同设备之间进行同步&#xff0c;使您可以随时随地访问和共享您的文件&#xff0c;因此受到了许多用户的喜爱。 一、什么是同步盘 首先到底什么是同步盘&#xff1f;同步盘是指一种云存储服务&#xff0c;它…