梓林小朋友
梓林小朋友
全部文章
分类
归档
标签
去牛客网
登录
/
注册
梓林小朋友的博客
全部文章
(共16篇)
题解 | #查找某个年龄段的用户信息#
select device_id,gender,age from user_profile where age>='20' and age<='23';
2023-04-23
1
144
题解 | #查找年龄大于24岁的用户信息#
select device_id,gender,age,university from user_profile where age>='24';
2023-04-23
1
184
题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university like '%北京%';
2023-04-23
1
160
题解 | #将查询后的列重新命名#
select device_id as user_infos_example from user_profile limit 2;
2023-04-23
1
130
题解 | #查询结果限制返回行数#
select device_id from user_profile limit 2;
2023-04-23
1
136
题解 | #查询结果去重#
select DISTINCT university from user_profile;
2023-04-23
1
142
首页
上一页
1
2
下一页
末页