首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
有一套的小锦鲤在秋招
获赞
1
粉丝
0
关注
0
看过 TA
0
南京师范大学
2027
数据分析师
IP属地:江苏
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑有一套的小锦鲤在秋招吗?
发布(5)
评论
刷题
收藏
有一套的小锦鲤在秋招
关注TA,不错过内容更新
关注
05-18 21:29
南京师范大学 数据分析师
题解 | 基本数学函数
select *, abs(value) absolute_value, ceil(value) ceiling_value, floor(value) floor_value, round(value,1) rounded_value from numbers order by id
0
点赞
评论
收藏
分享
05-18 21:09
南京师范大学 数据分析师
题解 | 电话号码格式校验
select * from contacts where phone_number regexp '^[1-9][0-9]{9}$' or phone_number regexp '^[1-9][0-9]{2}-[0-9]{3}-[0-9]{4}$'; 1. 正则表达式解析第一个格式 ^[1-9][0-9]{9}$含义:匹配 10位连续数字,且第一位不能是 0。分解:^ 表示字符串开始。[1-9] 第一位是 1-9 中的任意一个数字(排除 0)。[0-9]{9} 后续 9 位是任意数字(0-9)。$ 表示字符串结束。示例:1234567890。第二个格式 ^[1-9][0-9]{2}-[0-9...
0
点赞
评论
收藏
分享
05-17 21:32
南京师范大学 数据分析师
题解 | 计算用户的平均次日留存率
with temp as ( select device_id,date from question_practice_detail group by 1,2 ) select count(b.device_id)/count(a.device_id) as avg_ret from temp a left join temp b on a.device_id = b.device_id and a.date = date_sub(b.date,interval 1 day)
0
点赞
评论
收藏
分享
05-16 23:18
南京师范大学 数据分析师
题解 | 计算用户8月每天的练题数量
select day(date) as day,count(device_id) as question_cnt from question_practice_detail where date >= '2021-08-01' and date <= '2021-08-31' group by day;
0
点赞
评论
收藏
分享
05-14 20:53
南京师范大学 数据分析师
题解 | 统计每个学校的答过题的用户的平均答题数
select a.university,round((count(question_id)/count(distinct b.device_id)),4) as avg_answer_cnt from user_profile a right join question_practice_detail b on a.device_id = b.device_id group by university order by university;
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务