面试题四:手写sql
矫正数据,有以下2个表,建表语句如下所示
-- 订单表
create table t_order
(
id int auto_increment
primary key,
name varchar(255) null,
total int null
);
-- 插入数据
insert into sql_test.t_order (id, name, total) values (1, '家电', 1300);
insert into sql_test.t_order (id, name, total) values (2, '洗漱', 170);
insert into sql_test.t_order (id, name, total) values (3, '餐饮', 200); -- 详情表
create table t_detail
(
id int auto_increment
primary key,
detail varchar(255) null,
cost int null,
order_id int null
);
-- 插入数据
insert into sql_test.t_detail (id, detail, cost, order_id) values (1, '洗衣机', 500, 1);
insert into sql_test.t_detail (id, detail, cost, order_id) values (2, '电视机', 800, 1);
insert into sql_test.t_detail (id, detail, cost, order_id) values (3, '牙膏', 100, 2);
insert into sql_test.t_detail (id, detail, cost, order_id) values (4, '洗衣液', 70, 2);
insert into sql_test.t_detail (id, detail, cost, order_id) values (5, '白菜', 200, 3);
由于故障导致
t_order表中的total值出现异常,使用一个sql语句进行矫正;update t_order o,
(select order_id as oid, sum(cost) as t from t_detail GROUP BY order_id) b
set o.total = b.t
where o.id = b.oid;
分类求和题,有表如下
create table t_type
(
id int auto_increment
primary key,
type int null,
num int null
);
-- 插入数据
insert into sql_test.t_type (id, type, num) values (1, 1, 100);
insert into sql_test.t_type (id, type, num) values (2, 1, 200);
insert into sql_test.t_type (id, type, num) values (3, 2, 500);
insert into sql_test.t_type (id, type, num) values (4, 2, 200);
insert into sql_test.t_type (id, type, num) values (5, 3, 300);
insert into sql_test.t_type (id, type, num) values (6, 3, 180);
insert into sql_test.t_type (id, type, num) values (7, 4, 50);
insert into sql_test.t_type (id, type, num) values (8, 5, 60);
insert into sql_test.t_type (id, type, num) values (9, 6, 70);
要求:当
type>3时type=8,并且分类求和,要达到的效果如下:type sum 1 300 2 700 3 480 8 180 实现sql语句,需要使用到
case when xxx then xxx else xxx end语句:select case when type > 3 then 8 else type end as t, sum(case when type > 3 then num else num end)
from t_type
group by t;
学生成绩相关
-- 学生表
create table student(
id int unsigned primary key auto_increment,
name char(10) not null
);
insert into student(name) values('张三'),('李四');
-- 课程表
create table course(
id int unsigned primary key auto_increment,
name char(20) not null
);
insert into course(name) values('语文'),('数学');
-- 学生成绩表
create table student_course(
sid int unsigned,
cid int unsigned,
score int unsigned not null,
foreign key (sid) references student(id),
foreign key (cid) references course(id),
primary key(sid, cid)
);
insert into student_course values(1,1,80),(1,2,90),(2,1,90),(2,2,70);
查询重名的学生,按照name,id升序
select id,name from student where name in (select name c from student group by name HAVING count(name) > 1) order by name,id; -- exits写法
select t.id,t.name from student t where EXISTS (select s.name from student s where s.name = t.name GROUP BY name HAVING count(s.name) > 1 ) order by t.name,t.id;
在student_course表中查询平均分不及格的学生,列出学生id和平均分
select sid, AVG(score) as a from student_course GROUP BY sid HAVING a < 60;
在student_course表中查询每门课成绩都不低于80的学生id
select DISTINCT sid from student_course where sid not in (select sid from student_course where score < 80);
查询每个学生的总成绩,结果列出学生姓名和总成绩
select s.name, sum(c.score) from student_course c, student s where c.sid = s.id GROUP BY sid;
-- 上述方法会过滤掉没有成绩的人,因此需要使用左连接
select name,sum(score)
from student left join student_course
on student.id=student_course.sid
group by sid;
总成绩最高的学生,结果列出学生id和总成绩
select sid, sum(score) as ss from student_course GROUP BY sid order by ss desc limit 1;
在student_course表查询课程1成绩第2高的学生,如果第2高的不止一个则列出所有的学生
select * from student_coursewhere cid=1 and score = (
select score from student_course where cid = 1 group by score order by score desc limit 1,1
);
在student_course表查询各科成绩最高的学生,结果列出学生id、课程id和对应的成绩
select * from student_course as x where score>=
(select max(score) from student_course as y where cid=x.cid);
在student_course表中查询每门课的前2名,结果按课程id升序,同一课程按成绩降序
select * from student_course x where
2>(select count(distinct(score)) from student_course y where y.cid=x.cid and y.score>x.score)
order by cid,score desc;
一个叫team的表,里面只有一个字段name,一共有4条纪录,分别是a,b,c,d,对应四个球队,两两进行比赛,用一条sql语句显示所有可能的比赛组合
select a.name, b.name
from team a, team b
where a.name < b.name
竖变横
-- 年 季度 销售
-- 1991 1 11
-- 1991 2 12
-- 1991 3 13
-- 1991 4 14
-- 1992 1 21
-- 1992 2 22
-- 1992 3 23
-- 1992 4 24
-- 查询结果
-- 年 一季度 二季度 三季度 四季度
-- 1991 11 12 13 14
-- 1992 21 22 23 24 select 年,
sum(case when 季度=1 then 销售量 else 0 end) as 一季度,
sum(case when 季度=2 then 销售量 else 0 end) as 二季度,
sum(case when 季度=3 then 销售量 else 0 end) as 三季度,
sum(case when 季度=4 then 销售量 else 0 end) as 四季度
from sales group by 年;
面试题四:手写sql的更多相关文章
- SpringBoot项目里,让TKmybatis支持可以手写sql的Mapper.xml文件
SpringBoot项目通常配合TKMybatis或MyBatis-Plus来做数据的持久化. 对于单表的增删改查,TKMybatis优雅简洁,无需像传统mybatis那样在mapper.xml文件里 ...
- Hive手写SQL案例
1-请详细描述将一个有结构的文本文件student.txt导入到一个hive表中的步骤,及其关键字 假设student.txt 有以下几列:id,name,gender三列 1-创建数据库 creat ...
- 面试题|手写JSON解析器
这周的 Cassidoo 的每周简讯有这么一个面试题:: 写一个函数,这个函数接收一个正确的 JSON 字符串并将其转化为一个对象(或字典,映射等,这取决于你选择的语言).示例输入: fakePars ...
- 前端面试题整理——手写AJAX
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- 前端面试题之手写promise
前端面试题之Promise问题 前言 在我们日常开发中会遇到很多异步的情况,比如涉及到 网络请求(ajax,axios等),定时器这些,对于这些异步操作我们如果需要拿到他们操作后的结果,就需要使用到回 ...
- hibernate使用手写sql以及对结果list的处理
Session sees=simpleDAO.getSessionFactory().openSession(); String sql = "select * from fhcb_08_t ...
- js面试题之手写节流函数和防抖函数
函数节流:不断触发一个函数后,执行第一次,只有大于设定的执行周期后才会执行第二次 /* 节流函数:fn:要被节流的函数,delay:规定的时间 */ function throttle(fn,dela ...
- IDEA中mybatis插件自动生成手写sql的xml文件
上图: 选择这个安装,然后重启IDEA,ok.
- 前端面试题整理——手写简易jquery
class jQuery { constructor(selector) { const result = document.querySelectorAll(selector) console.lo ...
随机推荐
- 029. Python多态介绍
多态:不同的子类对象,调用相同的父类方法,产生不同的结果 继承 重写 在不改变原有代码的前提下,实现了不同的效果 class Soldier(): # 攻击 def attack(self): pas ...
- 020.Python生成器和生成器函数
一 生成器 1.1 基本概念 元组推导式是是生成器(generator) 生成器定义 生成器可以实现自定义,迭代器是系统内置的,不能够更改 生成器的本质就是迭代器,只不过可以自定义. 生成器有两种定义 ...
- declaration may not appear after executable statement in block--转载
这个问题是在编译STM32的程序时遇到的,这个错误的原因是对于变量的声明不能放在可执行语句后面,必须在主函数开头声明变量.在程序中声明一个变量时,需要在可执行语句之前声明,否则会出现以上错误. 例: ...
- 面试官问:ZooKeeper 有几种节点类型?别再说 4 种啦!
本文作者:HelloGitHub-老荀 好久没更新 ZK 的文章了,我想死你们啦.之前发布的 HelloZooKeeper 系列文章完结后,项目收获了将近 600 个 star.这远远超过了我自己的预 ...
- python内存管理总结
之前在学习与工作中或多或少都遇到关于python内存管理的问题,现在将其梳理一下. python内存管理机制 第0层 操作系统提供的内存管理接口 c实现 第1层 基于第0层操作系统内存管理接口包装而成 ...
- node.js学习(3)模块
1.创建文件 count.js 2 调用 3 改造 4 调用 5 再改造 6 在再改造
- 微调BERT:序列级和令牌级应用程序
微调BERT:序列级和令牌级应用程序 Fine-Tuning BERT for Sequence-Level and Token-Level Applications 为自然语言处理应用程序设计了不同 ...
- Spring Cloud06: Ribbon 负载均衡
一.使用背景 前面的学习中,我们已经使用RestTemplate来实现了服务消费者对服务提供者的调用,如果在某个具体的业务场景下,对某个服务的调用量突然大幅提升,这个时候就需要对该服务实现负载均衡以满 ...
- C++ QT安装教程2021
第一步 去官网下载 https://download.qt.io/archive/qt/ 第二步 next 然后 我是注册的账号 注意密码的格式,要求至少7位,包含大小写字母和数字 第三步 点击下一步 ...
- 「题解」300iq Contest 2 H. Honorable Mention
本文将同步发布于: 洛谷博客: csdn: 博客园: 简书. 题目 题目链接:gym102331H. 题意概述 给定一个长度为 \(n\) 的序列 \(a\),有 \(q\) 次询问,每次询问给定三个 ...