小马仔仔
小马仔仔
全部文章
题解
归档
标签
去牛客网
登录
/
注册
小马仔的博客
学习时长两年半的java程序员
全部文章
/ 题解
(共23篇)
题解 | #截取出年龄#
substring_index互相嵌套 select substring_index(SUBSTRING_INDEX(profile,',',3),',',-1)age, count(profile)number from user_submit group&nbs...
Mysql
2022-02-25
0
327
题解 | #统计每种性别的人数#
substring_index(*要分割的字符串*,*分隔符*,*数字*) 数字为正,从左往右,取左边;数字为负,从右往左,取右边 select SUBSTRING_INDEX(profile,',',-1)gender, count(profile)number fr...
Mysql
2022-02-25
2
308
题解 | #计算用户的平均次日留存率#
第二天的有效访问人数 / 第一天的访问人数 用两次子查询,获得第一天的访问人数和第二天的访问人数,要去重 用时间函数date_add(date,interval *间隔次数* *时间单位*)获得隔天的访问数,赋值给第二天 select count(q2.device_id)...
Mysql
2022-02-24
71
1488
题解 | #计算用户8月每天的练题数量#
select day(date)day, count(question_id)question_cnt from question_practice_detail where year(date) = '2021' and&nbs...
Mysql
2022-02-24
0
207
题解 | #查看不同年龄段的用户明细#
select device_id, gender, case when age >= 25 ...
Mysql
2022-02-24
0
275
题解 | #计算25岁以上和以下的用户数量#
select case when age < 25&nbs*...
Mysql
2022-02-24
0
218
题解 | #查找山东大学或者性别为男生的信息#
select device_id, gender, age, gpa from user_profile where university = '山东大学' union ALL select&n...
Mysql
2022-02-24
0
260
题解 | #统计每个用户的平均刷题数#
select university, difficult_level, round(count(t2.question_id) / count(DISTINCT&n...
Mysql
2022-02-24
0
221
题解 | #统计每个学校各难度的用户平均刷题数#
select t1.university, t3.difficult_level, round(count(t2.question_id) / count(distinct t1...
Mysql
2022-02-24
1
323
题解 | #统计每个学校的答过题的用户的平均答题数#
select t1.university, count(t2.question_id) / count(distinct t1.device_id) av...
Mysql
2022-02-24
1
309
首页
上一页
1
2
3
下一页
末页