牛客429177035号
牛客429177035号
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
牛客429177035号的博客
全部文章
(共2篇)
题解 | #查找GPA最高值#
select gpa from user_profile where university='复旦大学' order by gpa desc limit 1; select max(gpa) from user_profile where university='复旦大学'; 两种解法
Mysql
2021-12-30
0
330
题解 | #牛客的课程订单分析(一)#
select * from order_info where date > '2025-10-15' and status='completed' and (product_name='C++' or product_name='Java' or product_name='Python') ...
Sqlite
2021-12-29
3
386