sql之每日五题day02--多表联查/聚合函数/多值判断/函数

sql之每日五题day01--多表联查/聚合函数

    • [where和group by同时出现](#where和group by同时出现)
    • [分别查看&结果不去重--union all](#分别查看&结果不去重--union all)
    • [union all+细节别名](#union all+细节别名)
    • [case when多值判断](#case when多值判断)
    • 数据处理函数

where和group by同时出现

  • SQL24 统计每个用户的平均刷题数

仅查看山东大学的用户在不同难度下的每个用户的平均答题题目数

sql 复制代码
select  university,	difficult_level,	count(qpd.question_id)/count(distinct qpd.device_id) as avg_answer_cnt
from question_practice_detail as qpd
left join user_profile as up on up.device_id=qpd.device_id
left join question_detail as qd on qd.question_id=qpd.question_id
where university='山东大学'	
group by difficult_level

分别查看&结果不去重--union all

  • SQL25 查找山东大学或者性别为男生的信息

分别查看学校为山东大学或者性别为男性的用户的device_id、gender、age和gpa数据,结果不去重

sql 复制代码
select device_id,	gender,	age,	gpa
from user_profile
where university='山东大学'
union all
select device_id,	gender,	age,	gpa
from user_profile
where gender='male'

union all+细节别名

  • SQL26 计算25岁以上和以下的用户数量

现在运营想要将用户划分为25岁以下和25岁及以上两个年龄段,分别查看这两个年龄段用户数量

本题注意:age为null 也记为 25岁以下

sql 复制代码
select '25岁以下' as age_cut,	count(1) as number
from user_profile
where age < 25 or age is null
union all
select '25岁及以上' as age_cut,	count(1) as number
from user_profile
where age >= 25

case when多值判断

  • SQL27 查看不同年龄段的用户明细

现在运营想要将用户划分为20岁以下,20-24岁,25岁及以上三个年龄段,分别查看不同年龄段用户的明细情况,请取出相应数据。(注:若年龄为空请返回其他。)

  • 格式
sql 复制代码
case...when...then...else...end
sql 复制代码
select device_id,gender,
    CASE
    WHEN age < 20 THEN '20岁以下'
    WHEN age between 20 and 24 THEN '20-24岁'
    WHEN age >= 25 THEN '25岁及以上'
    else '其他' end age_cut
from user_profile

数据处理函数

  • SQL28 计算用户8月每天的练题数量

现在运营想要计算出2021年8月每天用户练习题目的数量,请取出相应数据。

sql 复制代码
select day(date) as day,count(question_id) as	question_cnt
from question_practice_detail
where year(date)=2021 and month(date)=8
group by day
相关推荐
hsg7715 小时前
简述:Jensen Huang‘s Footsteps网站全内容分析
前端·javascript·数据库
yuezhilangniao15 小时前
MySQL 8.0.32 二进制安装脚本 和初始化 操作系统版本rocky86
数据库·mysql·adb
Trouvaille ~15 小时前
【Redis篇】Redis 主从复制:数据同步的原理与实现
数据库·redis·缓存·中间件·高可用·主从复制·后端开发
hjhcos15 小时前
【PGSQL】无法修改表结构
sql
真实的菜16 小时前
Redis 从入门到精通(五):哨兵模式(Sentinel)—— 自动故障转移的完整原理与实战
数据库·redis·sentinel
唔6616 小时前
(二)补充完整的数据库、中间件、MQTT、JAR后台和Web前端的部署脚本,全部一键自动化。
数据库·中间件·jar
六月雨滴16 小时前
Oracle 内存优化
数据库·oracle
学代码的真由酱16 小时前
MySQL数据库进阶-数据库设计实践-Java
数据库·mysql·数据库设计
遇事不決洛必達16 小时前
【数据库系列】本地映射云服务器Mysql的方法
服务器·数据库·mysql·定时任务
海鸥-w17 小时前
用python (fastapi)做项目第一天创建项目结构,数据建表,ORM配置安装,写第一个接口
数据库·python·fastapi