Joneln
Joneln
全部文章
题解
专题(8)
归档
标签
去牛客网
登录
/
注册
Joneln
好好学习,天天向上。
全部文章
/ 题解
(共77篇)
题解 | #修改表#
来自专栏
-- 在指定列后添加新列 ALTER TABLE user_info add school VARCHAR(15) after level; -- 更改指定列列名 ALTER TABLE user_info CHANGE job profession varchar(10); -- 重新设置指定列属...
Mysql
2021-12-02
0
444
题解 | #插入记录(三)#
来自专栏
replace into table(columns) values (values) replace into examination_info values(null, 9003, 'SQL','hard', 90, '2021-01-01 00:00:00'); replace into作用...
Mysql
2021-11-22
0
427
题解 | #插入记录(一)#
来自专栏
插入数据 insert into exam_record values (null,1001,9001,'2021-09-01 22:11:12','2021-09-01 23:01:12',90); insert into exam_record values (null,1002,9002,'2...
Mysql
2021-11-22
0
375
题解 | #统计复旦用户8月练题情况#
来自专栏
过滤取值后再返回初始表格取值 当两个临时表在联结时都包含同一个过滤规则时,将这个规则提取到外面来写,而不是分别写在两个临时表代码中。 select uni_de.device_id, uni_de.university, case when question_cnt is ...
Mysql
2021-11-21
0
482
题解 | #切割、截取、删除、替换#
来自专栏
切割、截取、删除、替换 select -- 替换法 replace(string, '被替换部分','替换后的结果') -- device_id, replace(blog_url,'http:/url/','') as user_name -- 截取法 substr(string, start...
Mysql
2021-11-21
932
7380
题解 | #计算用户的平均次日留存率#
来自专栏
次日留存率 select sum(case when b.device_id is null then 0 else 1 end)/count(if(a.device_id is null,0,1)) as avg_ret from (select distinct device_id, date...
Mysql
2021-11-21
0
434
题解 | #计算用户8月每天的练题数量#
来自专栏
提取日期 select day(date) as day, count(question_id) as question_cnt from question_practice_detail where date like '2021-08%' group by day; day()
Mysql
2021-11-21
0
334
题解 | #查看不同年龄段的用户明细#
来自专栏
解法一 select device_id, gender, (case when age<20 then '20岁以下' when age>=20 and age<25 then '20-24岁' when age>=25 then '25岁及以上...
Mysql
Mysql
2021-11-21
0
356
题解 | #计算25岁以上和以下的用户数量#
来自专栏
select (case when age<25 or age is null then '25岁以下' else '25岁及以上' end) as age_cut, count(distinct device_id) as number from user_profile group by ...
Mysql
2021-11-21
0
272
题解 | #查找山东大学男生的GPA#
来自专栏
select device_id, gender, age, gpa from user_profile where university = '山东大学' union all select device_id, gender, age, gpa from user_profile where g...
Mysql
2021-11-21
0
380
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页