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.hqwc.cn/news/139227.html

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

相关文章

Tengine 边缘AI计算框架移植RV1126(包括opencv的交叉编译)

目录 1.编译opencv 2.拷贝SDK源码到虚拟机 3. 拉取TIM-VX代码 4.拉取Tengine源码并配置 1.编译opencv 编译opencv是为了&#xff0c;在编译Tengine时指定OpenCVConfig.cmake,以便寻找特定的opencv动态库 01.从github拉取opencv源代码 git clone -b 4.5.5 https://github.co…

yolov7改进优化之蒸馏(一)

最近比较忙&#xff0c;有一段时间没更新了&#xff0c;最近yolov7用的比较多&#xff0c;总结一下。上一篇yolov5及yolov7实战之剪枝_CodingInCV的博客-CSDN博客 我们讲了通过剪枝来裁剪我们的模型&#xff0c;达到在精度损失不大的情况下&#xff0c;提高模型速度的目的。上一…

王兴投资5G小基站

边缘计算社区获悉&#xff0c;近期深圳佳贤通信正式完成数亿元股权融资&#xff0c;本轮融资由美团龙珠领投。本轮融资资金主要用于技术研发、市场拓展等&#xff0c;将进一步巩固和扩大佳贤通信在5G小基站领域的技术及市场领先地位。 01 佳贤通信是什么样的公司&#xff1f; 深…

Databend hash join spill 设计与实现 | Data Infra 第 16 期

本周六&#xff0c;我们将迎来最新一期的 Data Infra 直播活动&#xff0c;本次活动我们邀请到了 Databend 研发工程师-王旭东&#xff0c;与大家分享主题为《 Databend hash join spill 设计与实现 》的相关知识。 通过本次分享&#xff0c;我们能更加了解 Databend 的 hash …

基于 SaaS 搭建的党建小程序源码系统 带完整的搭建教程

随着互联网技术的发展和应用的普及&#xff0c;传统的党建模式已经难以满足现代社会的需求。为了更好地服务党员和群众&#xff0c;提高党组织的凝聚力和战斗力&#xff0c;基于 SaaS搭建的党建小程序源码系统应运而生。小程序的出现可以很好的解决大多数问题&#xff0c;方便了…

Python突破浏览器TLS/JA3 指纹

JA3 是一种创建 SSL/TLS 客户端指纹的方法&#xff0c;一般一个网站的证书是不变的&#xff0c;所以浏览器指纹也是稳定的&#xff0c;能区分不同的客户端。 requests库 Python requests库请求一个带JA3指纹网站的结果&#xff1a; import requestsheaders {authority: tls…

2023年Q3季度国内手机大盘销额下滑2%,TOP品牌销售数据分析

根据Canalys机构发布的最新报告&#xff0c;2023年第三季度&#xff0c;全球智能手机市场出货量仅下跌1%&#xff0c;可以认为目前全球手机市场的下滑势头有所减缓。而国内线上市场的表现也类似。 根据鲸参谋数据显示&#xff0c;今年Q3京东平台手机累计销量约1100万件&#xf…

2023_Spark_实验十四:SparkSQL入门操作

1、将emp.csv、dept.csv文件上传到分布式环境&#xff0c;再用 hdfs dfs -put dept.csv /input/ hdfs dfs -put emp.csv /input/ 将本地文件put到hdfs文件系统的input目录下 2、或者调用本地文件也可以。区别&#xff1a;sc.textFile("file:///D:\\temp\\emp.csv&qu…

药物滥用第二篇介绍

MTD&#xff1a; 美沙酮&#xff08;Methadone&#xff09;&#xff0c;是一种有机化合物&#xff0c;化学式为C21H27NO&#xff0c;为μ阿片受体激动剂&#xff0c;药效与吗啡类似&#xff0c;具有镇痛作用&#xff0c;并可产生呼吸抑制、缩瞳、镇静等作用。与吗啡比较&#x…

物流监管:智慧仓储数据可视化监控平台

随着市场竞争加剧和市场需求的不断提高&#xff0c;企业亟需更加高效、智能且可靠的仓储物流管理方式&#xff0c;以提升企业的物流效率&#xff0c;减少其输出成本&#xff0c;有效应对市场上的变化和挑战。 图扑自研 HT for Web 产品搭建的 2D 智慧仓储可视化平台&#xff0c…

深入理解Huffman编码:原理、代码示例与应用

目录 ​编辑 介绍 Huffman编码的原理 信息理论背景 频率统计 Huffman树 Huffman编码的代码示例 数据结构 权重选择 Huffman编码生成 完整示例 完整代码 测试截图 Huffman编码的应用 总结 介绍 在这个数字时代&#xff0c;数据的有效压缩和传输变得至关重要。Hu…

一文学会使用WebRTC API

WebRTC&#xff08;Web Real-Time Communication&#xff09;是一项开放标准和技术集合&#xff0c;由 W3C 和 IETF 等组织共同推动和维护&#xff0c;旨在通过Web浏览器实现实时通信和媒体流传输。WebRTC于2011年6月1日开源并在Google、Mozilla、Opera支持下被纳入万维网联盟的…