牛客344132035号
牛客344132035号
全部文章
分类
题解(20)
归档
标签
去牛客网
登录
/
注册
牛客344132035号的博客
全部文章
(共3篇)
题解 | #分组排序练习题#
SELECT university,AVG(question_cnt) avg_question_cnt from user_profile GROUP BY university ORDER BY AVG(question_cnt)
Mysql
2021-11-04
0
291
题解 | #查看学校名称中含北京的用户#
select device_id,age,university from user_profile where university like '%北京%' # _匹配任意一个字符 #%匹配零个或多个字符
Mysql
2021-11-04
0
395
题解 | #查找除复旦大学的用户信息#
# select device_id,gender,age,university from user_profile where university <> '复旦大学' # select device_id,gender,age,university from user_profile...
Mysql
2021-11-04
54
1112