首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
在刷代码的小师弟
获赞
9
粉丝
1
关注
1
看过 TA
30
江苏商贸职业学院
2024
Java
IP属地:湖南
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑在刷代码的小师弟吗?
发布(51)
评论
刷题
收藏
在刷代码的小师弟
关注TA,不错过内容更新
关注
2023-10-21 18:50
江苏商贸职业学院 Java
题解 | #高级操作符练习(2)#
select device_id,gender,age,university,gpa from user_profile where gpa > 3.7 or university = '北京大学';
0
点赞
评论
收藏
分享
2023-10-21 18:45
江苏商贸职业学院 Java
题解 | #查找后降序排列#
select device_id,gpa,age from user_profile order by gpa desc,age desc;
0
点赞
评论
收藏
分享
2023-10-21 18:43
江苏商贸职业学院 Java
题解 | #查找后多列排序#
select device_id,gpa,age from user_profile order by gpa,age;
0
点赞
评论
收藏
分享
2023-10-21 18:33
江苏商贸职业学院 Java
题解 | #查找后排序#
select device_id,age from user_profile order by age;
0
点赞
评论
收藏
分享
2023-10-18 20:23
江苏商贸职业学院 Java
题解 | #高级操作符练习(1)#
select device_id,gender,age,university,gpa from user_profile where gender = 'male' and gpa > 3.5;
0
点赞
评论
收藏
分享
2023-10-18 20:09
江苏商贸职业学院 Java
题解 | #用where过滤空值练习#
select device_id,gender,age,university from user_profile where age <> 'null'; # age is not null; # age != 'null';
0
点赞
评论
收藏
分享
2023-10-18 19:59
江苏商贸职业学院 Java
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university not like '复旦大学'; # university != '复旦大学'; # university not in('复旦大学');
0
点赞
评论
收藏
分享
2023-10-18 19:54
江苏商贸职业学院 Java
题解 | #查找某个年龄段的用户信息#
select device_id,gender,age from user_profile where age between 20 and 23;
0
点赞
评论
收藏
分享
2023-10-18 19:41
江苏商贸职业学院 Java
题解 | #查找年龄大于24岁的用户信息#
select device_id,gender,age,university from user_profile where age > 24;
0
点赞
评论
收藏
分享
2023-10-18 19:39
江苏商贸职业学院 Java
题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university = '北京大学';
0
点赞
评论
收藏
分享
2023-10-18 19:18
江苏商贸职业学院 Java
题解 | #将查询后的列重新命名#
select device_id as 'user_infos_example' from user_profile where id in(1,2);
0
点赞
评论
收藏
分享
2023-10-18 19:12
江苏商贸职业学院 Java
题解 | #查询结果限制返回行数#
select device_id from user_profile where id in(1,2);
0
点赞
评论
收藏
分享
2023-10-18 19:09
江苏商贸职业学院 Java
题解 | #查询结果去重#
select distinct university from user_profile; # distinct 去除重复
0
点赞
评论
收藏
分享
2023-10-18 19:01
江苏商贸职业学院 Java
题解 | #查询多列#
select device_id,gender,age,university from user_profile;
0
点赞
评论
收藏
分享
2023-10-18 18:58
江苏商贸职业学院 Java
题解 | #查询所有列#
select * from user_profile;
0
点赞
评论
收藏
分享
1
2
3
4
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务