首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
想吃卤蛋的孤勇者在度假
获赞
0
粉丝
0
关注
3
看过 TA
2
University of Bristol
2024
行业研究
IP属地:江西
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑想吃卤蛋的孤勇者在度假吗?
发布(7)
评论
刷题
收藏
想吃卤蛋的孤勇者在度假
关注TA,不错过内容更新
关注
01-27 11:12
University of Bristol 行业研究
题解 | 冲击offer的牛牛
grade=88.9 print(type(grade)) print(int(grade))
0
点赞
评论
收藏
分享
2024-09-12 15:53
University of Bristol 行业研究
题解 | #计算用户的平均次日留存率#
select count(distinct q2.device_id,q2.date)/count(distinct q1.device_id,q1.date) avg_ret from question_practice_detail as q1 left join question_practice_detail as q2 on q2.device_id=q1.device_id and datediff(q2.date,q1.date)=1
0
点赞
评论
收藏
分享
2024-09-12 14:35
University of Bristol 行业研究
题解 | #验证刷题效果,输出题目真实通过率#
select user_id, count(distinct if(result_info=1,question_id,null))/count(distinct question_id) as question_pass_rate, sum(result_info)/count(result_info) as pass_rate, count(question_id)/count(distinct question_id) as question_per_cnt from done_questions_record group by user_id having question_pass_...
0
点赞
评论
收藏
分享
2024-09-12 09:36
University of Bristol 行业研究
题解 | #输出提交且通过次数大于2 的用户ID且升序排列#
select user_id from done_questions_record group by user_id having count(if(result_info=1,1,null))>2
0
点赞
评论
收藏
分享
2024-09-12 09:18
University of Bristol 行业研究
题解 | #查询每天刷题通过数最多的前二名用户id和刷题数#
select date,user_id,pass_count from (select date,user_id,pass_count,row_number()over(partition by date order by pass_count desc) rk from questions_pass_record) t1 where rk<=2 order by date
0
点赞
评论
收藏
分享
2024-09-11 14:48
University of Bristol 行业研究
题解 | #返回顾客名称和相关订单号以及每个订单的总价#
select c.cust_name,os.order_num,sum(os.quantity*os.item_price) OrderTotal from Orders o inner join OrderItems os on os.order_num=o.order_num #只需要显示三张表的交集,所以不用左联 inner join Customers c on c.cust_id=o.cust_id group by c.cust_name,os.order_num order by c.cust_name,os.order_num
0
点赞
评论
收藏
分享
2024-09-09 20:46
University of Bristol 行业研究
题解 | #顾客登录名#
select cust_id,cust_name,upper(concat(substring(cust_name,1,2),substring(cust_city,1,3))) user_login from Customers #字母大写 upper
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务