首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
好奇的秋招人马上接offer
获赞
1
粉丝
0
关注
1
看过 TA
10
西安电子科技大学
2025
产品经理
IP属地:陕西
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑好奇的秋招人马上接offer吗?
发布(9)
评论
刷题
好奇的秋招人马上接offer
关注TA,不错过内容更新
关注
西安电子科技大学 产品经理
@长大我要当喜之螂:
tplink 联洲 提前批 系统测试
点赞 11
评论 15
0
点赞
评论
收藏
分享
西安电子科技大学 产品经理
@牛客836346359号:
字节跳动游戏测评(已收到意向书)
0
点赞
评论
收藏
分享
09-10 10:28
西安电子科技大学 产品经理
题解 | #查找山东大学或者性别为男生的信息#
select device_id,gender,age,gpa from user_profile where university='山东大学' union all select device_id,gender,age,gpa from user_profile where gender='male';
0
点赞
评论
收藏
分享
09-10 10:24
西安电子科技大学 产品经理
题解 | #统计每个用户的平均刷题数#
select u.university,qd.difficult_level,count(qpd.question_id)/count(distinct qpd.device_id) avg_answer_cnt from question_practice_detail qpd inner join question_detail qd on qd.question_id=qpd.question_id inner join user_profile u on u.device_id=qpd.device_id and u.university="山东大学" group ...
0
点赞
评论
收藏
分享
09-10 10:17
西安电子科技大学 产品经理
题解 | #统计每个学校各难度的用户平均刷题数#
select u.university,qd.difficult_level,count(qpd.question_id)/count(distinct qpd.device_id) from question_practice_detail qpd inner join user_profile u on u.device_id=qpd.device_id inner join question_detail qd on qd.question_id=qpd.question_id group by u.university,qd.difficult_level;
0
点赞
评论
收藏
分享
09-10 10:08
西安电子科技大学 产品经理
题解 | #统计每个学校的答过题的用户的平均答题数#
select u.university,count(q.question_id)/count(distinct q.device_id) avg_answer_cnt from question_practice_detail q inner join user_profile u on u.device_id=q.device_id group by u.university;
0
点赞
评论
收藏
分享
09-10 09:53
西安电子科技大学 产品经理
题解 | #浙江大学用户题目回答情况#
select q.device_id,q.question_id,q.result from question_practice_detail q inner join user_profile u on q.device_id=u.device_id and u.university="浙江大学";
0
点赞
评论
收藏
分享
09-10 09:45
西安电子科技大学 产品经理
题解 | #分组排序练习题#
select university,avg(question_cnt) from user_profile group by university order by avg(question_cnt);
0
点赞
评论
收藏
分享
09-10 09:40
西安电子科技大学 产品经理
题解 | #分组过滤练习题#
select university,avg(question_cnt) avg_question_cnt,avg(answer_cnt) avg_answer_cnt from user_profile group by university having avg(question_cnt)<5 or avg(answer_cnt)<20;
0
点赞
评论
收藏
分享
1
关注他的用户也关注了:
牛客网
牛客企业服务