MySQL经典面试题

目录

1、查询课程名称为“数据库”,且分数低于60分的学生姓名和分数

2、对所有性别为“女”的学生,同时课程名为“高等数学”的分数统一加5

3、删除姓名为“张翰”(学号=1)课程名为“数据库”的课程成绩

4、统计2021年11月每天新用户的次日保留率(保留两位小数)

5、问题:编写SQL语句,查找所有订购了数量至少100个的BR01、BR02或BR03的订单。你需要返回OrderItem表的订单号(order_num)、产品ID(prod_id)和数量(quantity),并按产品ID或数量进行过滤

7、检索每个顾客的名称(Customers表中的cust_name)和所有的订单号(Orders表中的order_num),列出所有的顾客,即使他们没有下过订单。在最后根据顾客姓名cust_name升序返回

8、请统计2021年10月每个有展示记录的退货率不大于0.5的商品各项指标


1、查询课程名称为“数据库”,且分数低于60分的学生姓名和分数

2、对所有性别为“女”的学生,同时课程名为“高等数学”的分数统一加5

3、删除姓名为“张翰”(学号=1)课程名为“数据库”的课程成绩

创建student表
create table Student(Sno int primary key,Sname varchar(255),Ssex varchar(10),Sdept varchar(50)
);创建Course表
create table Course(Cno int primary key,Cname varchar(255),Tno int
);创建Score表
create table Score(Sno int,Cno int,Degree int,primary key(Sno, Cno)
);创建Teacher表
create table Teacher(Tno int primary key,Tname varchar(255),Tsex varchar(10),Prof varchar(50)
);在Student表中插入一条记录
insert into Student (Sno, Sname, Ssex, Sdept) values (1,'张翰','男','17届计算机一班');查询课程名称为“数据库”,且分数低于60分的学生姓名和分数
select s.Sname, SC.Degree
from Student s
join Score SC
on s.Sno = SC.Sno
join Course c
on SC.Cno = c.Cno
where c.Cname = "数据库" and SC.Degree < 60;对所有性别为“女”的学生,同时课程名为“高等数学”的分数统一加5
update Score SC
set Degree = Degree + 5
where SC.Sno in (select S.Snofrom Student swhere s.Ssex = "女")
and SC.Cno in (select c.Cnofrom Course cwhere c.Cname = "高等数学");删除姓名为“张翰”(学号=1)课程名为“数据库”的课程成绩
delete from Score
where Sno =1 and Cno in(select c.Cnofrom Course cwhere c.Cname = "数据库");

4、统计2021年11月每天新用户的次日保留率(保留两位小数)

创建用户行为日志表tb_user_log(uid-用户ID,artical_id-文章ID,in_time-进入时间,out_time-离开时间,sign_in-是否签到)
create table tb_user_log(id int primary key,uid int,artical_id int,in_time datetime,out_time datetime,sign_in  int
);insert into tb_user_log values(1, 101, 0, '2021-11-01 10:00:00', '2021-11-01 10:00:42', 1);
insert into tb_user_log values(2, 102, 9001, '2021-11-01 10:00:00', '2021-11-01 10:00:09', 0);
insert into tb_user_log values(3, 103, 9001, '2021-11-01 10:00:01', '2021-11-01 10:01:50', 0);
insert into tb_user_log values(4, 101, 9002, '2021-11-02 10:00:09', '2021-11-02 10:00:28', 0);
insert into tb_user_log values(5, 103, 9002, '2021-11-02 10:00:51', '2021-11-02 10:00:59', 0);
insert into tb_user_log values(6, 104, 9001, '2021-11-02 11:00:28', '2021-11-02 11:01:24', 0);
insert into tb_user_log values(7, 101, 9003, '2021-11-03 11:00:55', '2021-11-03 11:01:24', 0);
insert into tb_user_log values(8, 104, 9003, '2021-11-03 11:00:45', '2021-11-03 11:00:55', 0);
insert into tb_user_log values(9, 105, 9003, '2021-11-03 11:00:53', '2021-11-03 11:00:59', 0);
insert into tb_user_log values(10, 101, 9002, '2021-11-04 11:00:55', '2021-11-04 11:00:59', 0);问题:统计2021年11月每天新用户的次日保留率(保留两位小数)
注意:次日保留率为当天新增的用户数中第二天右活跃了的用户数占比。如果in_time-进入时间和out_time-离开时间跨天了,在两天里都记为该用户活跃过,结果按日期升序
with t2 as (select uid, date(in_time) dt from tb_user_logunionselect uid, date(out_time) dt from tb_user_log
)
select t1.dt dt, round(count(t2.uid) / count(t1.uid), 2) uv_left_rate
from (select uid, min(date(in_time)) dt from tb_user_log group by uid) as t1 
left join t2 
on t1.uid = t2.uid and t1.dt = date_sub(t2.dt, interval 1 day) 
where date_format(t1.dt, '%Y-%m') = '2021-11'
group by dt;

5、问题:编写SQL语句,查找所有订购了数量至少100个的BR01、BR02或BR03的订单。你需要返回OrderItem表的订单号(order_num)、产品ID(prod_id)和数量(quantity),并按产品ID或数量进行过滤

OrderItem表包含了所有已订购的产品(有些已被订购多次)
create table OrderItem(prod_id varchar(255) not null,order_num varchar(255) not null,quantity int not null
);insert into OrderItem values ('BR01', 'a1', '105');
insert into OrderItem values ('BR02', 'a2', '1100');
insert into OrderItem values ('BR02', 'a2', '200');
insert into OrderItem values ('BR03', 'a4', '1121');
insert into OrderItem values ('BR017', 'a5', '10');
insert into OrderItem values ('BR02', 'a2', '19');
insert into OrderItem values ('BR017', 'a7', '5');问题:编写SQL语句,查找所有订购了数量至少100个的BR01、BR02或BR03的订单。你需要返回OrderItem表的订单号(order_num)、产品ID(prod_id)和数量(quantity),并按产品ID或数量进行过滤
select order_num, prod_id, quantity
from OrderItem
where quantity >= 100
and prod_id in ('BR01', 'BR02', 'BR03')
order by prod_id;

6、编写SQL语句,从Products表中检索所有的产品名称(prod_name),以及名为quant_sold的计算列,其中包含所售产品的总数(在OrderItems表上使用子查询和SUM(quantity)检索)

Products表中检索所有的产品名称:prod_name、产品ID:prod_id
create table Products(prod_id varchar(255) not null,prod_name varchar(255) not null
);insert into Products values('a0001','egg');
insert into Products values('a0002','sockets');
insert into Products values('a0013','coffee');
insert into Products values('a0003','cola');OrderItems代表订单商品表,订单产品:prod_id、售出数量:quantity
create table OrderItems(prod_id varchar(255) not null,quantity int not null
);insert into OrderItems values('a0001','105');
insert into OrderItems values('a0002','1100');
insert into OrderItems values('a0002','200');
insert into OrderItems values('a0013','1121');
insert into OrderItems values('a0003','10');
insert into OrderItems values('a0003','19');
insert into OrderItems values('a0003','5');问题:编写SQL语句,从Products表中检索所有的产品名称(prod_name),以及名为quant_sold的计算列,其中包含所售产品的总数(在OrderItems表上使用子查询和SUM(quantity)检索)
select t1.prod_name, round(sum(t2.quantity), 3) as quant_sold
from Products t1
join OrderItems t2
on t1.prod_id = t2.prod_id
group by t1.prod_name;

7、检索每个顾客的名称(Customers表中的cust_name)和所有的订单号(Orders表中的order_num),列出所有的顾客,即使他们没有下过订单。在最后根据顾客姓名cust_name升序返回

Orders表代表订单信息含有订单号order_num和顾客id cust_id
create table Orders(order_num varchar(255) not null,cust_id varchar(255) not null
);insert into Orders values('a1','cust10');
insert into Orders values('a2','cust1');
insert into Orders values('a3','cust2');
insert into Orders values('a4','cust22');
insert into Orders values('a5','cust221');
insert into Orders values('a7','cust2217');Customers表代表顾客信息含有顾客id cust_id和顾客名称cust_name
create table Customers(cust_id varchar(255) not null,cust_name varchar(255) not null
);insert into Customers values('cust10','andy');
insert into Customers values('cust1','ben');
insert into Customers values('cust2','tony');
insert into Customers values('cust22','tom');
insert into Customers values('cust221','an');
insert into Customers values('cust2217','hex');
insert into Customers values('cust40','ace');问题:检索每个顾客的名称(Customers表中的cust_name)和所有的订单号(Orders表中的order_num),列出所有的顾客,即使他们没有下过订单。在最后根据顾客姓名cust_name升序返回
select a.cust_name, b.order_num
from Orders b
right join Customers a
on a.cust_id = b.cust_id
order by a.cust_name;

8、请统计2021年10月每个有展示记录的退货率不大于0.5的商品各项指标

现有用户对展示的商品行为表tb_user_event(uid-用户ID,product_id-商品ID,event_time-行为时间,if_click-是否点击,if_cart-是否加购物车,if_payment-是否付款,if_refund-是否退货退款)
create table tb_user_event(id int primary key,uid int not null,product_id int not null,event_time datetime,if_click tinyint,if_cart tinyint,if_payment tinyint,if_refund tinyint
);insert into tb_user_event values(1,101,8001,'2021-10-01 10:00:00',0 ,0,0,0);
insert into tb_user_event values(2,102,8001,'2021-10-01 10:00:00',1 ,0,0,0);
insert into tb_user_event values(3,103,8001,'2021-10-01 10:00:00',1 ,1,0,0);
insert into tb_user_event values(4,104,8001,'2021-10-02 10:00:00',1 ,1,1,0);
insert into tb_user_event values(5,105,8001,'2021-10-02 10:00:00',1 ,1,1,0);
insert into tb_user_event values(6,101,8002,'2021-10-03 10:00:00',1 ,1,1,0);
insert into tb_user_event values(7,109,8001,'2021-10-04 10:00:00',1 ,1,1,1);问题:请统计2021年10月每个有展示记录的退货率不大于0.5的商品各项指标
注意:商品点展比=点击数÷展示数;加购率=加购数÷点击数;成单率=付款数÷加购数;退货率=退款数÷付款数,当分母为0时整体结果记为0,结果中各项指标保留3位小数,并按商品ID升序排序。
select product_id,round(cnt_click / cnt_prod, 3) ctr,round(cnt_cart / cnt_click, 3) cart_rate,round(cnt_pay / cnt_cart, 3) payment_rate,round(cnt_refund / cnt_pay, 3) refund_rate
from(select product_id,count(*) cnt_prod,sum(if_click) cnt_click,sum(if_cart) cnt_cart,sum(if_payment) cnt_pay,sum(if_refund) cnt_refundfrom tb_user_eventwhere date_format(event_time, '%Y-%m') = '2021-10'group by product_id
)t_product
having refund_rate <= 0.5
order by product_id;

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

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

相关文章

6.4.4释放音频

6.4.4释放音频 许多Flash动画里的音乐或歌曲非常好听&#xff0c;能不能在没有源文件的情况下把里面的声音文件取出来呢&#xff1f;利用Swf2VideoConverter2可以轻松做到这一点。 1&#xff0e;单击“添加”按钮&#xff0c;在弹出的下拉菜单中选择“添加文件”&#xff0c;…

金蝶云星空表单插件获取单据体数据

文章目录 金蝶云星空表单插件获取单据体数据 金蝶云星空表单插件获取单据体数据 使用标识报错 var thisEntry this.View.Model.DataObject["FEntity"] as DynamicObjectCollection;应该使用实体属性 var thisEntry this.View.Model.DataObject["BillEntry&q…

搜索经典题——填充 9*9矩阵

题目&#xff1a;给定一个九行九列矩阵&#xff0c;填充矩阵元素&#xff0c;要求&#xff1a; 1、每一行每一列&#xff0c;每个小九宫格&#xff08;图片画粗的地方就是&#xff09;不能包含相同元素 2、每一行&#xff0c;每一列&#xff0c;每个小九宫格均会完整出现1-9的数…

面试题目,你对前端工程化的了解

前端工程化是通过工具和流程来提高软件开发效率、降低维护成本以及改善项目可维护性的方法。在前端领域&#xff0c;前端工程化通常包括以下方面内容 版本控制 使用 git 来管理代码的版本&#xff0c;追踪变更&#xff0c;协作开发等项目脚手架 使用项目的脚手架进行项目的初始…

【Python爬虫】项目案例讲解,一步步教你爬取淘宝商品数据!

前言 随着互联网时代的到来&#xff0c;人们更加倾向于互联网购物&#xff0c;某宝又是电商行业的巨头&#xff0c;在某宝平台中有很多商家数据&#xff0c;今天带大家使用pythonselenium工具获取这些公开的商家数据 环境介绍&#xff1a; python 3.6pycharmseleniumcsvtime…

SpringBoot自动装配原理及分析

一、什么是自动装配 在使用SpringBoot的时候&#xff0c;会自动将Bean装配到IOC容器中。例如我们在使用Redis数据库的时候&#xff0c;会引入依赖spring-boot-starter-data-redis。在引入这个依赖后&#xff0c;服务初始化的时候&#xff0c;会将操作Redis需要的组件注入到Ioc…

vue3 项目中 arguments 对象获取失败问题

问题 在 vue3 项目中 获取到的 arguments 对象与传入实参不符&#xff0c;打印出函数中的 arguments 对象显示如下&#xff1a; 原因 作者仔细回看代码才发现&#xff0c;自己一直用的是 vue3 的组合式写法&#xff0c;函数都是箭头函数&#xff0c;而箭头函数不存在 argumen…

故障诊断传感器的位置会影响振动信号分类的精度吗?

问题描述&#xff1a;故障诊断传感器的位置会影响振动信号分类的精度吗&#xff1f; 问题解答&#xff1a; 是的&#xff0c;故障诊断中传感器的位置确实可能会影响振动信号分类的精度。 首先&#xff0c;传感器的位置决定了能够采集到的振动信号的特性。如果传感器靠近故障…

cetos7搭建部署k8s 版本1.28

主机分配 内存最少是4G cpu个数最少两个 IP内存CPU主机名192.168.231.12044K1 192.168.231.12144K2192.168.231.12244K3 关闭防火墙 systemctl stop firewalled 关闭swap vim /etc/fstab 设置主机名称 hostnameset 安装docker 三个主机 初始化集群 在mas…

1432 - 走出迷宫的最少步数-广度优先搜索BFS

代码 #include<bits/stdc.h> using namespace std; char a[51][51]; int r,c; int fx[4]{0,0,1,-1}; int fy[4]{1,-1,0,0}; int tx,ty; struct Node{int x,y,step; }; int bfs(int x,int y){a[x][y]#;queue<Node> q;q.push({x,y,1});while(!q.empty()){Node Curre…

第五篇:其他窗口部件 QAbstractButton

QAbstractButton QAbstractButton 类是按钮部件的抽象基类&#xff0c;提供了按钮的通用功能。它的子类包括标准按钮 QPushButton、工具按钮 QToolButton、复选框 QCheckBox和单选按钮 QRadioButton 等。 QPushButton QPushButton 提供了创建交互按钮的基本功能。它可以包含…

openssl3.2 - 官方demo学习 - smime - smenc.c

文章目录 openssl3.2 - 官方demo学习 - smime - smenc.c概述笔记END openssl3.2 - 官方demo学习 - smime - smenc.c 概述 读取X509证书, 用PKCS7加密明文(证书 明文 3DES_CBC), 保存为MIME格式的密文 openssl API的命名含义 BIO_new_file “new” a “file”, return a “…

开发安全之:Server-Side Request Forgery

Overview 函数 fsockopen() 将使用资源 URI 的用户控制数据启动与第三方系统的网络连接。攻击者可以利用此漏洞代表应用程序服务器发送一个请求&#xff0c;因为此请求将自应用程序服务器内部 IP 地址发出。 Details 当攻击者可以影响应用程序服务器建立的网络连接时&#xf…

css3+javaScript实现一个左右钟摆-摇晃的红灯笼网页特效

css3javaScript实现一个左右钟摆-摇晃的红灯笼网页特效&#xff01;前天逛博客时无意中看见了&#xff0c;别人的博客顶部有一个会左右钟摆的摇晃的红灯笼&#xff0c;产生了想法&#xff0c;我也想给自己做一个&#xff0c;但是网上找了很多方案&#xff0c;都没有实现。终于在…

论文阅读笔记AI篇 —— Transformer模型理论+实战 (三)

论文阅读笔记AI篇 —— Transformer模型理论实战 &#xff08;三&#xff09; 第三遍阅读&#xff08;精读&#xff09;3.1 Attention和Self-Attention的区别&#xff1f;3.2 Transformer是如何进行堆叠的&#xff1f;3.3 如何理解Positional Encoding&#xff1f;3.x 文章涉及…

【C++入门到精通】智能指针 shared_ptr 简介及C++模拟实现 [ C++入门 ]

阅读导航 引言一、简介二、成员函数三、使用示例四、C模拟实现五、std::shared_ptr的线程安全问题六、总结温馨提示 引言 在 C 动态内存管理中&#xff0c;除了 auto_ptr 和 unique_ptr 之外&#xff0c;还有一种智能指针 shared_ptr&#xff0c;它可以让多个指针共享同一个动…

钉钉副总裁李智勇:AI超级助理,提升大模型时代生产力

微软比尔盖茨此前曾预言:“五年内&#xff0c;每个人都将拥有AI私人助理Agent&#xff0c;Agent将颠覆软件行业 。” 近日以来&#xff0c;在GPT store正式上线点爆情绪之后&#xff0c;无论国内外&#xff0c;Agent都是创业圈里炙手可热的新贵。一场关于Agent创业比拼大赛&am…

GitLab服务器忘记root密码处理方式

GitLab服务器忘记root密码处理方式 文章目录 GitLab服务器忘记root密码处理方式1. Gitlab查看用户id号1. 通过api接口查询2. 在Linux终端里直接通过curl命令查询 2. 进入GitLab数据库中查询并修改root密码 1. Gitlab查看用户id号 1. 通过api接口查询 接口查询地址&#xff1a;…

S2-04 ESP-IDF开发 : IIC

IIC IIC(Inter&#xff0d;Integrated Circuit)总线是一种由NXP&#xff08;原PHILIPS&#xff09;公司开发的两线式串行总线&#xff0c;用于连接微控制器及其外围设备。多用于主机和从机在数据量不大且传输距离短的场合下的主从通信&#xff0c;在小数据量场合使用&#xff…

【Linux第二课-权限】操作系统、Linux用户、Linux权限、Linux文件类型、粘滞位

目录 操作系统shell外壳为什么有shell外壳shell外壳是什么shell外壳工作原理 Linux用户root用户与非root用户root用户与普通用户的切换普通用户 --> root用户root用户 --> 普通用户普通用户 --> 普通用户对一条指令提升为root权限进行执行 Linux权限Linux中的权限角色…