高频SQL50题(基础版)-3

文章目录

主要内容

  1. LeetCode-高频SQL50题(基础版)21-30

一.SQL练习题

1.1174-即时食物配送


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
Select round(avg(order_date = customer_pref_delivery_date)*100,2) immediate_percentage
from (
    select *,row_number() over(partition by customer_id order by order_date) as rn 
    from delivery 
) a 
where rn = 1

2.550-游戏玩法分析


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below

select round(avg(a.event_date is not null), 2) fraction
from 
    (select player_id, min(event_date) as login
    from activity
    group by player_id) p 
left join activity a 
on p.player_id=a.player_id and datediff(a.event_date, p.login)=1

3.2356-每位教师所教授的科目种类的数量


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select teacher_id,count(distinct subject_id) as cnt 
from teacher 
group by teacher_id;

4.1141-查询近30天活跃用户数


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
SELECT activity_date day, COUNT(DISTINCT  user_id) active_users
FROM Activity
WHERE DATEDIFF("2019-07-27", activity_date) < 30 AND DATEDIFF("2019-07-27", activity_date) >= 0
GROUP BY activity_date;

5.1084-销售分析


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select p.product_id,product_name 
from sales s,product p 
where s.product_id = p.product_id
group by p.product_id
having sum(sale_date < '2019-01-01') = 0
and sum(sale_date > '2019-03-31') = 0;

6.596-超过5名学生的课


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select class
from courses
group by class
having count(distinct(student))>=5;

7.1729-求关注者的数量


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select user_id, count(follower_id) as followers_count
from followers 
group by user_id
order by user_id;

8.619-只出现一次的最大数字



代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select max(num) as num
from (
    select num 
    from MyNumbers
    group by num 
    having count(num)=1) as t ;

9.1045-买下所有产品的客户


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select distinct c.customer_id
from customer c
left join product p 
on c.product_key = p.product_key
group by c.customer_id
having count(distinct p.product_key) = (select count(distinct product_key)from product)

10.1731-每位经理的下属员工数量


代码如下(示例):
sql 复制代码
# Write your MySQL query statement below
select 
    b.employee_id,
    b.name,
    count(a.reports_to) reports_count,
    round(avg(a.age),0) average_age
from employees a,employees b 
where a.reports_to = b.employee_id
group by a.reports_to
having reports_count != 0 
order by employee_id;

总结

以上是今天要讲的内容,练习了一些高频SQL题。

相关推荐
不会就选b1 天前
MySQL之视图
数据库·mysql
RisunJan1 天前
Linux命令-nologin(用于系统账户或需要禁止交互式登录的场景)
linux·运维
copyer_xyf1 天前
Python 异常处理
前端·后端·python
倔强的石头1061 天前
【Linux指南】Linux快捷键与系统实用技巧
linux·运维·服务器
>no problem<1 天前
基于cola5.0的基础设施层的多数据库切换方案思路
数据库·spring boot·mybatisplus·cola5.0·数据库迁移适配
番茄地瓜1 天前
Linux 配置静态 IP 步骤
linux·运维·服务器
OceanBase数据库官方博客1 天前
OceanBase 赋能央国企:从发电到用电的全链路业务承载
数据库·oceanbase
llz_1121 天前
web-第三次课后作业
前端·后端·web
.千余1 天前
【Linux】 传输层协议UDP:从端口号到传输机制
linux·运维·udp
瀚高PG实验室1 天前
pgsql-ogr-fdw
数据库·postgresql·瀚高数据库·highgo