首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
kktb
获赞
4
粉丝
0
关注
3
看过 TA
9
成都信息工程大学
2020
测试工程师
IP属地:四川
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑kktb吗?
发布(11)
评论
刷题
收藏
kktb
关注TA,不错过内容更新
关注
2023-01-06 21:17
成都信息工程大学 测试工程师
题解 | #计算用户8月每天的练题数量#
SELECT if(SUBSTRING(date,9,1) = "0",SUBSTRING(date,10,1),SUBSTRING(date,9,2) ) as day , count(question_id) from question_practice_detail group by day
0
点赞
评论
收藏
分享
2023-01-06 20:42
成都信息工程大学 测试工程师
题解 | #计算25岁以上和以下的用户数量#
select "25岁以下" as age_cut, count(device_id) from user_profile where age < 25 or age is null union all select "25岁及以上" as age_cut, count(device_id) from user_profile where age >= 25; # 题意要求写法 : SELECT CASE WHEN age < 25 or age is null THEN '25岁以下' WHEN age >...
0
点赞
评论
收藏
分享
2023-01-05 15:46
成都信息工程大学 测试工程师
题解 | #统计每个学校各难度的用户平均刷题数#
select e1.university, e3.difficult_level, count(e2.question_id)/count(distinct(e2.device_id)) as avg_answer_cnt from user_profile as e1 left join question_practice_detail as e2 on e1.device_id = e2.device_id left join question_detail as e3 on e2.question_id = e3.question_id group by uni...
0
点赞
评论
收藏
分享
2023-01-04 21:31
成都信息工程大学 测试工程师
题解 | #计算男生人数以及平均GPA#
select count(*) as male_num ,avg(gpa) as avg_gpa from user_profile where gender ="male"
0
点赞
评论
收藏
分享
2023-01-02 18:01
成都信息工程大学 测试工程师
题解 | #查询结果去重#
SELECT distinct(university) from user_profile
0
点赞
评论
收藏
分享
2023-01-02 17:32
成都信息工程大学 测试工程师
题解 | #增加派对名单(一)#
interviewer = input().split(" ") interviewer.append("Allen") print(interviewer)
0
点赞
评论
收藏
分享
2023-01-02 17:21
成都信息工程大学 测试工程师
题解 | #列表的长度#
list=input().split(" ") print(len(list)) j=0 for i in list: j=j+1 print(j)
0
点赞
评论
收藏
分享
2023-01-02 16:52
成都信息工程大学 测试工程师
题解 | #发送offer#
message = 'Allen, you have passed our interview and will soon become a member of our company.\nTom, you have passed our interview and will soon become a member of our company.\nAllen, welcome to join us!\nAndy, welcome to join us!' message2=message.replace("Tom","Andy") message3 =message2.replace("A...
0
点赞
评论
收藏
分享
2023-01-02 16:27
成都信息工程大学 测试工程师
题解 | #截取用户名前10位#
name = input() if(len(name)<10): print(name) elif(len(name)>=10): print(name[0:10])
0
点赞
评论
收藏
分享
2021-07-19 19:06
成都信息工程大学 测试工程师
2021-07-19
在牛客打卡2天,今天学习:刷题 12 道
每日监督打卡
0
点赞
评论
收藏
分享
2019-10-28 16:58
成都信息工程大学 测试工程师
2019-10-28
在牛客打卡1天,今天也很努力鸭!
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务