首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
牛客695936755号
获赞
0
粉丝
0
关注
1
看过 TA
0
湖南工商大学
2019
数据分析师
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑牛客695936755号吗?
发布(7)
评论
刷题
收藏
牛客695936755号
关注TA,不错过内容更新
关注
2023-11-29 15:55
湖南工商大学 数据分析师
题解 | #计算25岁以上和以下的用户数量#
select case when age < 25 or age is null then '25岁以下' when age >= 25 then '25岁及以上' end as age_cut ,count(1) as number from user_profile group by case when age < 25 or age is null then '25岁以下' when age >= 25 then '25岁及以上' end ;
0
点赞
评论
收藏
分享
2023-11-29 15:47
湖南工商大学 数据分析师
题解 | #统计每个用户的平均刷题数#
select t1.university ,t3.difficult_level ,count(t2.question_id) / count(distinct t2.device_id) as avg_answer_cnt from user_profile as t1 left join question_practice_detail as t2 on t1.device_id = t2.device_id left join question_detail as t3 on t2.question_id = t3.question_id where t1.university = '山...
0
点赞
评论
收藏
分享
2023-11-29 15:12
湖南工商大学 数据分析师
题解 | #浙江大学用户题目回答情况#
select t1.device_id,t1.question_id,t1.result from question_practice_detail t1 inner join user_profile t2 on t1.device_id = t2.device_id where t2.university = '浙江大学';
0
点赞
评论
收藏
分享
2023-11-29 12:09
湖南工商大学 数据分析师
题解 | #分组过滤练习题#
select university ,avg(question_cnt) as avg_question_cnt ,avg(answer_cnt) as avg_answer_cnt from user_profile group by university having avg_question_cnt < 5 or avg_answer_cnt < 20;
0
点赞
评论
收藏
分享
2023-11-29 11:52
湖南工商大学 数据分析师
题解 | #21年8月份练题总数#
select count(distinct device_id) as did_cnt ,count(1) as question_cnt from question_practice_detail where substr(date,1,7) = '2021-08';
0
点赞
评论
收藏
分享
2023-11-28 19:45
湖南工商大学 数据分析师
题解 | #牛牛的朋友们#
x,y = map(int,input().split()) a = x+y b = x-y print(a,b) print(a*b)
0
点赞
评论
收藏
分享
2023-11-28 19:32
湖南工商大学 数据分析师
题解 | #牛妹的烦恼#
a,b,c = map(int,input().split()) if a > b and a > c: print('Python') elif b > a and b > c: print('Java') else: print('C')
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务