首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
【查无此鸟】
获赞
1
粉丝
1
关注
9
看过 TA
3
男
哈尔滨理工大学
2024
C++
IP属地:黑龙江
520
私信
关注
拉黑
举报
举报
确定要拉黑【查无此鸟】吗?
发布(44)
评论
刷题
收藏
【查无此鸟】
关注TA,不错过内容更新
关注
04-29 20:19
哈尔滨理工大学 C++
题解 | 查找后排序
select device_id, age from user_profile order by age asc; order by + 列名 asc/desc:根据那一列升序/降序
0
点赞
评论
收藏
分享
04-29 20:15
哈尔滨理工大学 C++
题解 | 用where过滤空值练习
select device_id, gender,age, university from user_profile where age is not null; 非空 is not null;
0
点赞
评论
收藏
分享
04-29 20:06
哈尔滨理工大学 C++
题解 | 查找除复旦大学的用户信息
select device_id, gender,age, university from user_profile where university!='复旦大学'; NOT IN ('***');也可以
0
点赞
评论
收藏
分享
04-29 19:53
哈尔滨理工大学 C++
题解 | 查找某个年龄段的用户信息
select device_id,gender,age from user_profile where age between 20 and 23; 用between 和 and 来限制范围
0
点赞
评论
收藏
分享
04-29 19:45
哈尔滨理工大学 C++
打卡打卡 从零开始打怪升级
2025-04-29
在牛客打卡2天,今天学习:代码提交 9 次
每日监督打卡
0
点赞
评论
收藏
分享
04-29 19:43
哈尔滨理工大学 C++
题解 | 查找年龄大于24岁的用户信息
select device_id,gender,age,university from user_profile where age>24; where 后面 加限制条件
0
点赞
评论
收藏
分享
04-29 18:18
哈尔滨理工大学 C++
题解 | 查找学校是北大的学生信息
select device_id,university from user_profile where university='北京大学'; where 用来筛选条件
0
点赞
评论
收藏
分享
04-29 16:29
哈尔滨理工大学 C++
题解 | 将查询后的列重新命名
select device_id as user_infos_example from user_profile limit 2; 用 AS 来对列名 进行重命名,放在原来的列名之后
0
点赞
评论
收藏
分享
04-29 16:23
哈尔滨理工大学 C++
题解 | 查询结果限制返回行数
select device_id from user_profile limit 2; 要几行就limit几 放在最后面
0
点赞
评论
收藏
分享
04-29 16:19
哈尔滨理工大学 C++
题解 | 查询结果去重
select distinct university from user_profile; select university from user_profile group by university 两种方式 group by 和 distinct 都可以
0
点赞
评论
收藏
分享
04-29 16:12
哈尔滨理工大学 C++
题解 | 查询多列
SELECT device_id,gender,age,university FROM user_profile SELECT 想要的特定列名(用逗号隔开)FROM 表名
0
点赞
评论
收藏
分享
04-29 16:08
哈尔滨理工大学 C++
题解 | 查询所有列
select * from user_profile; select 列名 from 表名 列名可以换成*
0
点赞
评论
收藏
分享
04-29 16:04
哈尔滨理工大学 C++
项目考核考麻了
我要库库刷题 成为刷题仙人
0
点赞
评论
收藏
分享
2020-12-23 19:30
哈尔滨理工大学 C++
啊这之前没打过卡啊
2020-12-23
在牛客打卡1天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
1
2
3
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务