air_1
air_1
全部文章
分类
归档
标签
去牛客网
登录
/
注册
air_1的博客
全部文章
(共41篇)
题解 | Where in 和Not in
SELECT device_id,gender,age,university,gpa FROM user_profile WHERE university IN("北京大学","复旦大学","山东大学");
2026-04-26
0
0
题解 | 高级操作符练习(2)
SELECT device_id,gender,age,university,gpa FROM user_profile WHERE university = "北京大学" OR gpa > 3.7
2026-04-26
0
0
题解 | 高级操作符练习(1)
SELECT device_id,gender,age,university,gpa FROM user_profile WHERE gender = "male" AND gpa > 3.5
2026-04-26
0
2
题解 | 用where过滤空值练习
select device_id,gender,age,university from user_profile where age IS NOT NULL
2026-04-26
1
2
题解 | 神秘石像的镜像序列
#include <stdio.h> #include <stdlib.h> const int n = 101; int main() { int arr[n]; int i,cnt = 0; while(i != 0){ scanf...
2026-04-23
1
9
题解 | 素数判断
#include <stdio.h> #include <stdlib.h> int main(int argc, char* argv[]) { int i, j, n, T; scanf("%d", &T); for ...
2026-04-23
1
8
题解 | 查找后降序排列
select device_id,gpa,age from user_profile order by gpa desc,age desc 不知道能不能在gpa一样的时候降序排列,反正是通过了
2026-04-22
1
9
题解 | 将查询后的列重新命名
select device_id as user_infos_example from user_profile limit 2; as用来做重命名
2026-04-22
0
9
题解 | 查询结果去重
SELECT DISTINCT university FROM user_profile distinct用来做重复元素的去重
2026-04-22
1
7
题解 | 平方根
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求非负整数 n 的平方根 * @param n int整型 你需要求 n 的平方根 * @return double浮点型 */ #include <math.h> double ...
2026-04-22
0
8
首页
上一页
1
2
3
4
5
下一页
末页