大橙子有糖
大橙子有糖
全部文章
分类
归档
标签
去牛客网
登录
/
注册
大橙子有糖的博客
TA的专栏
130篇文章
16人订阅
华为HJ103所有解法
104篇文章
1332人学习
动态规划专题
26篇文章
292人学习
全部文章
(共137篇)
SQL9 题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where not university="复旦大学";
2023-02-15
0
302
SQL8 题解 | #查找某个年龄段的用户信息#
select device_id,gender,age from user_profile where age between 20 and 23;
2023-02-15
0
259
SQL7 题解 | #查找年龄大于24岁的用户信息#
select device_id,gender,age,university from user_profile where age>24;
2023-02-15
0
306
SQL6 题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university="北京大学";
2023-02-15
1
216
SQL5 题解 | #将查询后的列重新命名#
select device_id as user_infos_example from user_profile limit 2;
2023-02-15
0
197
SQL4 题解 | #查询结果限制返回行数#
select device_id from user_profile limit 2;
2023-02-15
0
207
SQL3 题解 | #查询结果去重#
# select distinct university from user_profile; select university from user_profile group by university;
2023-02-15
0
222
SQL2 题解 | #查询多列#
select device_id,gender,age,university from user_profile;
2023-02-15
0
215
SQL1 题解 | #查询所有列#
在牛客的sql练习开始啦~ select * from user_profile;
2023-02-15
0
283
HJ40 正则表达式解法题解 | #统计字符#
来自专栏
#思路: #遍历一遍,判断字符并计数 # str1=input() # a=b=c=d=0 # for i in str1: # if i.isalpha(): # a+=1 # elif i==" ": # b+=1 # elif i.isd...
2023-02-04
0
313
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页