首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
LEEvivi
获赞
0
粉丝
0
关注
4
看过 TA
0
燕京理工学院
2016
数据分析师
IP属地:北京
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑LEEvivi吗?
发布(6)
评论
刷题
收藏
LEEvivi
关注TA,不错过内容更新
关注
2024-07-08 21:23
燕京理工学院 数据分析师
题解 | #提取博客URL中的用户名#
select device_id, substring_index(blog_url,"/",-1) as user_name from user_submit
0
点赞
评论
收藏
分享
2024-07-08 21:13
燕京理工学院 数据分析师
题解 | #统计每种性别的人数#
select substring_index (profile,",",-1) as gender ,count(device_id) as munber from user_submit group by gender
0
点赞
评论
收藏
分享
2024-07-07 21:25
燕京理工学院 数据分析师
题解 | #查看不同年龄段的用户明细#
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 as age_cut from user_profile;
0
点赞
评论
收藏
分享
2024-07-07 20:45
燕京理工学院 数据分析师
题解 | #统计每个用户的平均刷题数#
select university,difficult_level, count(b.question_id)/count(distinct b.device_id) as avg_answer_cnt from user_profile as a inner join question_practice_detail as b on a.device_id = b.device_id inner join question_detail as c on b.question_id = c.question_id where university="山东大学" group ...
0
点赞
评论
收藏
分享
2024-07-07 13:09
燕京理工学院 数据分析师
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university <>"复旦大学";
0
点赞
评论
收藏
分享
2024-07-07 13:07
燕京理工学院 数据分析师
题解 | #查找后降序排列#
select device_id,gpa,age from user_profile order by gpa desc,age desc;
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务