
排名
用户解题统计
过去一年提交了
勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。
收藏
收藏日期 | 题目名称 | 解决状态 |
---|---|---|
没有收藏的题目。 |
评论笔记
评论日期 | 题目名称 | 评论内容 | 站长评论 |
---|---|---|---|
2024-11-07 | 一线城市历年平均气温  | ||
2024-11-06 | 表连接(3)一直使用一张表,现在开始两张表  | ||
2024-11-06 | 表连接(3)一直使用一张表,现在开始两张表  | ||
2024-10-30 | 分组与聚合函数(5)五花八门的项目,其实都有固定套路(2)  |
提交记录
提交日期 | 题目名称 | 提交代码 |
---|---|---|
2025-02-17 | 基于共同兴趣爱好的餐厅推荐(1)-我吃过啥  |
select cust_uid,mch_nm from mt_trx_rcd1 where cust_uid='MT10000' and mch_typ1='餐饮' group by cust_uid,mch_nm order by mch_nm; |
2025-02-12 | 经过3个象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and c>0; |
2025-02-12 | 经过3个象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and c!=0; |
2025-02-12 | 经过至少两个象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0; |
2025-02-12 | 一元一次函数形成的三角形面积  |
select * from numbers_for_fun where a=0 and b!=0 and abs(c*(c/b))>=10; |
2025-02-12 | 一元一次函数形成的等腰三角形  |
select * from numbers_for_fun where a=0 and b in (1,-1); |
2025-02-08 | 与X轴有且只有一个交点的一元二次函数  |
select * from numbers_for_fun where a!=0 and b*b-4*a*c=0; |
2025-02-08 | 开口向上且经过原点的一元二次函数  |
select * from numbers_for_fun where a>0 and c=0; |
2025-02-08 | 开口向上的一元二次函数  |
select * from numbers_for_fun where a>0 ; |
2025-02-08 | 必过(-1, 0)的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and -b+c=0; |
2025-02-08 | 必过(3, -8)的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and 3*b+c=-8; |
2025-02-08 | 必过(-1, -1)的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and c=b-1; |
2025-02-08 | 必过(0, 1)的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and c=1; |
2025-02-08 | 不经过第二象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b>0 and c<=0; |
2025-02-08 | 不经过第三象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b<0 and c>=0 |
2025-02-08 | 不经过第三象限的一元一次函数  |
select * from numbers_for_fun where a=0 and b<0 and c>0 |
2025-01-23 | 找出与y=x有交点的所有一元一次函数  |
select * from numbers_for_fun where a=0 and b!=1 and b!=0; |
2025-01-23 | 找出与X轴交点小于等于0的一元一次函数  |
select * from numbers_for_fun where a=0 and ((b>0 and c>=0)or (b<0 and c<=0)); |
2025-01-23 | 找出与X轴交点大于0的一元一次函数  |
select * from numbers_for_fun where a=0 and( (b>0 and c<0)or (b<0 and c>0)); |
2025-01-23 | 找出与X轴交点大于0的一元一次函数  |
select * from numbers_for_fun where a=0 and b!=0 and c<=0; |