首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
正在背八股的羚羊很不想泡池子
获赞
5
粉丝
2
关注
0
看过 TA
22
2024
数据其它
IP属地:四川
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑正在背八股的羚羊很不想泡池子吗?
发布(63)
评论
刷题
正在背八股的羚羊很不想泡池子
关注TA,不错过内容更新
关注
2023-03-14 21:31
数据其它
题解 | #SQL类别高难度试卷得分的截断平均值#
select "SQL" AS tag, "hard" as difficulty, format((sum(a.score) - max(a.score) - min(a.score)) / ((count(1)) - 2),1) as clip_avg_score from exam_record a join examination_info b on a.exam_id = b.exam_id and b.difficulty = "hard" and a.submit_time is not null...
0
点赞
评论
收藏
分享
2023-03-14 19:44
数据其它
题解 | #纠错4#
这组题,也是入门题,但我感没有非技术快速入门那一组题好
0
点赞
评论
收藏
分享
2023-03-13 21:12
数据其它
题解 | #确定最佳顾客的另一种方式(二)#
select max(c.cust_name) as cust_name, sum(b.item_price * b.quantity) as total_price from Orders a join OrderItems b on a.order_num = b.order_num join Customers c on a.cust_id = c.cust_id group by a.order_num, c.cust_id having sum(b.item_price * b.quantity) >= 1000 ...
0
点赞
评论
收藏
分享
2023-03-13 20:47
数据其它
题解 | #返回顾客名称和相关订单号以及每个订单的总价#
select a.cust_name, b.order_num, sum(c.quantity * c.item_price) as OrderTotal from Customers a left join Orders b on a.cust_id = b.cust_id join OrderItems c on b.order_num = c.order_num group by a.cust_id, a.cust_name, b.order_num order by a.cust_name, b.o...
0
点赞
评论
收藏
分享
2023-03-13 20:17
数据其它
题解 | #
我总感觉牛客的测试用例有问题,我不排序的话为什么过了?????,我服气了,leetcode的用例给的蛮全的说实话
0
点赞
评论
收藏
分享
2023-03-11 22:11
数据其它
题解 | #21年8月份练题总数#
下一组,开会员了兄弟们
0
点赞
评论
收藏
分享
2023-03-11 22:04
数据其它
题解 | #查找后多列排序#
好多题出题人就是为了凑题二凑题......这玩意儿你说前三道我还能理解,搁这干啥呢,虽说这一组确实属于基础题,也不能这么基础吧。
0
点赞
评论
收藏
分享
2023-03-11 21:59
数据其它
题解 | #浙大不同难度题目的正确率#
select c.difficult_level, sum( case when b.result = "right" then 1 else 0 end ) / count(1) as correct_rate from user_profile a join question_practice_detail b on a.device_id = b.device_id and a.university = "浙江大学" join question_deta...
0
点赞
评论
收藏
分享
2023-03-11 21:45
数据其它
题解 | #统计复旦用户8月练题情况#
select a.device_id, a.university, sum( case when b.device_id is not null then 1 else 0 end ) as question_cnt, sum( case when b.result = "right" then 1 else 0 end ) as right_question_cnt from u...
0
点赞
评论
收藏
分享
2023-03-11 21:27
已编辑
数据其它
题解 | #找出每个学校GPA最低的同学#
select b.device_id, b.university, b.gpa from ( select a.device_id, a.university, a.gpa, rank() over ( partition by a.university order by a.gpa asc ...
0
点赞
评论
收藏
分享
2023-03-10 23:04
数据其它
题解 | #统计每种性别的人数#
select substring_index(a.profile,",",-1) as gender, count(1) as number from user_submit a group by substring_index(a.profile,",",-1) 查个mysql的函数搞半天,对mysql不熟悉
0
点赞
评论
收藏
分享
2023-03-11 17:08
已编辑
数据其它
题解 | #计算用户的平均次日留存率#
select sum(d.isCome) / count(1) as avg_ret from ( select c.device_id, c.`date`, case when sum(c.nextCome) = 0 then 0 else 1 end as isCome from ( select ...
0
点赞
评论
收藏
分享
2023-03-10 21:47
数据其它
题解 | #计算25岁以上和以下的用户数量#
select ( case when b.rangeAge = 1 then '25岁以下' else '25岁及以上' end ) as age_cut, count(1) as number from ( select ( case when a.age is null then 1 when a.age < 25 then 1 ...
0
点赞
评论
收藏
分享
2023-03-10 21:30
数据其它
题解 | #查找山东大学或者性别为男生的信息#
只想说一句,出这个题的就是个沙却我还以为是另一种题,写半天写出来结果一看结果不对。。。。网络也是卡得不行
0
点赞
评论
收藏
分享
2023-03-10 21:08
数据其它
题解 | #统计每个用户的平均刷题数#
select '山东大学' as university, d.difficult_level, sum(ansNum) / count(d.device_id) as avg_answer_cnt from ( select a.device_id, c.difficult_level, count(1) as ansNum from user_profile a join question_practice_d...
0
点赞
评论
收藏
分享
1
2
3
4
5
关注他的用户也关注了:
牛客网
牛客企业服务