首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
nnnnnnnnnbbb
获赞
0
粉丝
0
关注
0
看过 TA
2
西华大学
2017
测试工程师
IP属地:四川
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑nnnnnnnnnbbb吗?
发布(10)
评论
刷题
收藏
nnnnnnnnnbbb
关注TA,不错过内容更新
关注
2023-06-24 22:02
西华大学 测试工程师
题解 | #Where in 和Not in#
select device_id,gender,age,university,gpa from user_profile where university="北京大学" or university="复旦大学" or university="山东大学"
0
点赞
评论
收藏
分享
2023-06-24 21:56
西华大学 测试工程师
题解 | #高级操作符练习(2)#
select device_id,gender,age,university,gpa from user_profile where university="北京大学" or gpa >3.7
0
点赞
评论
收藏
分享
2023-06-24 21:53
西华大学 测试工程师
题解 | #高级操作符练习(1)#
select device_id,gender,age,university,gpa from user_profile where gender ="male" and gpa >3.5
0
点赞
评论
收藏
分享
2023-06-24 21:50
西华大学 测试工程师
题解 | #用where过滤空值练习#
select device_id,gender,age,university from user_profile where age is not null; #is not null表示不为空,!=null不能使用
0
点赞
评论
收藏
分享
2023-06-24 21:16
西华大学 测试工程师
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university != "复旦大学"
0
点赞
评论
收藏
分享
2023-06-24 21:09
西华大学 测试工程师
题解 | #查找某个年龄段的用户信息#
select device_id,gender,age from user_profile where age >=20 and age <=23 #输入要查找的数据列名device_id,gender,age,在写上条件age >=20 and age <=23
0
点赞
评论
收藏
分享
2023-06-24 20:46
西华大学 测试工程师
题解 | #查找年龄大于24岁的用户信息#
select device_id,gender,age,university from user_profile where age >24 #先写出要查找的信息device_id,gender,age,university,再写出条件,age >24
0
点赞
评论
收藏
分享
2023-06-24 20:43
西华大学 测试工程师
题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university="北京大学" #先写出需要查找的内容device_id,university,再写出查找的条件university="北京大学"
0
点赞
评论
收藏
分享
2023-06-24 20:40
西华大学 测试工程师
题解 | #将查询后的列重新命名#
select device_id as user_infos_example from user_profile limit 2 #limit 2 为查找前两个,device_id as user_infos_example改列名
0
点赞
评论
收藏
分享
2023-06-24 20:34
西华大学 测试工程师
题解 | #查询结果限制返回行数#
select device_id from user_profile limit 2
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务