Alina_0229
Alina_0229
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Alina_0229的博客
全部文章
/ 题解
(共77篇)
题解 | #按照数量和价格排序#
select quantity,item_price from OrderItems order by quantity desc,item_price desc 或 select * from OrderItems order by quantity desc,item_price desc
Mysql
2022-03-08
0
304
题解 | #计算用户的平均次日留存率#
以下仅为个人笔记 一开始自己陷入了误区,想着直接拿表一表二进行拼接,然后获取相应的值就可以了,但是忽略了一点,表一表二拼接时,以左表为准,右表的日期应该进行偏移后一位,这样才能得到想要的值,date_add 函数向日期添加指定的时间间隔date_add(日期表达式,interval 时间间隔数 ty...
Mysql
2022-03-07
0
230
题解 | #计算用户8月每天的练题数量#
以下仅为个人笔记 一开始陷入了一个误区,以为是把八月份的练题数量找出来,但是忽略了“每天”,利用时间函数,获取到8月份练题的天数,然后进行统计,再根据天进行分组 select day(date) day,count(question_id) from question_practice_detail...
Mysql
2022-03-01
0
285
题解 | #插入记录(一)#
insert into exam_record(uid,exam_id,start_time,submit_time,score) values (1001,9001,"2021-09-01 22:11:12","2021-09-01 23:01:12",90), (1002,9002,"2021-...
Mysql
2022-02-21
0
212
题解 | #插入记录(一)#
insert into exam_record(uid,exam_id,start_time,submit_time,score) values (1001,9001,"2021-09-04 22:11:12","2021-09-04 23:01:12",90), (1002,9002,"2021-...
Mysql
2022-02-21
0
221
题解 | #查看不同年龄段的用户明细#
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 ...
Mysql
2022-02-21
0
236
题解 | #计算25岁以上和以下的用户数量#
条件函数if、case when 表达式 then、case 表达式 when then case when 表达式 then 写法 select case when age<25 or age is null then "25岁以下" when age>=25 then "25岁及以上...
Mysql
2022-02-21
0
294
题解 | #查找山东大学或者性别为男生的信息#
#查询山东大学的device_id、gender、age和gpa数据 select device_id,gender,age,gpa from user_profile where university="山东大学" #查询性别为男的用户的device_id、gender、age和gpa数据 sel...
Mysql
2022-02-20
0
260
题解 | #统计每个用户的平均刷题数#
select up.university,qd.difficult_level,COUNT(qp.question_id) / count(DISTINCT(up.device_id)) as avg_answer_cnt from user_profile as up, question_prac...
Mysql
2022-02-20
0
238
题解 | #浙江大学用户题目回答情况#
select p.university,qd.difficult_level count(d.questioin_id) / count(distinc(p.device_id))as avg_answer_cnt from user_profile p join question_practice...
Mysql
2022-02-20
0
258
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页