首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
王庆梁
获赞
0
粉丝
0
关注
0
看过 TA
0
北京科技大学天津学院
2016
Java
IP属地:北京
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑王庆梁吗?
发布(8)
评论
刷题
收藏
王庆梁
关注TA,不错过内容更新
关注
2024-02-23 10:28
北京科技大学天津学院 Java
题解 | #查找GPA最高值#
select round(max(gpa),1) gpa from user_profile where university ='复旦大学'
0
点赞
评论
收藏
分享
2024-02-23 10:21
北京科技大学天津学院 Java
题解 | #查看学校名称中含北京的用户#
select device_id,age,university from user_profile where university like '北京%'
0
点赞
评论
收藏
分享
2024-02-23 10:17
北京科技大学天津学院 Java
题解 | #操作符混合运用#
select device_id,gender,age,university,gpa from user_profile where gpa > 3.5 and university ='山东大学' or gpa > 3.8 and university = '复旦大学'
0
点赞
评论
收藏
分享
2024-02-23 10:09
北京科技大学天津学院 Java
题解 | #Where in 和Not in#
select device_id,gender,age,university,gpa from user_profile where university in('北京大学','复旦大学','山东大学') limit 0,5
0
点赞
评论
收藏
分享
2024-02-22 18:09
北京科技大学天津学院 Java
题解 | #统计每个学校的答过题的用户的平均答题数#
select pro.university,(count(qpb.question_id) / count(distinct qpb.device_id)) avg_answer_cnt from question_practice_detail qpb inner join user_profile pro on qpb.device_id = pro.device_id group by pro.university
0
点赞
评论
收藏
分享
2024-02-22 15:52
北京科技大学天津学院 Java
题解 | #查找GPA最高值#
select max(gpa) gpa from user_profile where university ="复旦大学"
0
点赞
评论
收藏
分享
2024-01-16 18:42
北京科技大学天津学院 Java
题解 | #合并两个排序的链表#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * } * } */ public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return ListNode类 */ public ListN...
0
点赞
评论
收藏
分享
2023-11-19 18:36
北京科技大学天津学院 Java
题解 | #反转链表#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * } * } */ public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ public ListNode ReverseList (ListNode he...
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务