勤奋努力的追梦人想要offer
勤奋努力的追梦人想要offer
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勤奋努力的追梦人想要offer的博客
全部文章
(共44篇)
题解 | 查找学校是北大的学生信息
select device_id,university from user_profile where university='北京大学'; select device_id,university /使用 SELECT 语句选择需要的字段from user_profile /通过 FROM 子句指...
2025-05-05
0
28
题解 | 将查询后的列重新命名
select device_id as user_infos_example from user_profile limit 2; select device_id as user_infos_example /使用 select 语句选择需要的字段(device_id),并通过 as关键字对列进行...
2025-05-05
0
25
题解 | 查询结果限制返回行数
select device_id from user_profile limit 2; select device_id /选择 device_id 字段。from user_profile /指定从 user_profile 表中获取数据。limit 2; /限制查询结果只返回前 2 条记录
2025-05-05
0
35
题解 | 查询结果去重
select distinct university from user_profile; select distinct university /选择 university列并去除重复项。from user_profile; /来自user_profile表
2025-05-05
0
36
首页
上一页
1
2
3
4
5
下一页
末页