排名

用户解题统计

过去一年提交了

勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。

收藏

收藏日期 题目名称 解决状态
2025-11-26 条件过滤-符合条件的班主任  已解决

评论笔记

评论日期 题目名称 评论内容 站长评论
2025-11-26 经过3个象限的一元一次函数 
输出示例怎么和答案输出的不一样
啥也没说
2025-11-26 经过至少两个象限的一元一次函数 
题目中示例的那个一元一次函数c就是0呀
啥也没说
2025-11-25 一元一次函数形成的三角形面积 
面积是绝对值,哈哈哈。只想公式,把这个忘了,哈哈哈
啥也没说
2025-11-19 必过(3, -8)的一元一次函数 
3b和3*b不一样,哈哈哈
啥也没说
2025-11-19 必过(-1, -1)的一元一次函数 
当b=0时y=-1确实过(-1,-1),但y=-1不是题目要求的一元一次函数
啥也没说

提交记录

提交日期 题目名称 提交代码
2025-11-26 北京有雪的日子 
select dt,tmp_h,tmp_l,con from weather_rcd_china 
where city='beijing'and
conlike "%雪%"
;
2025-11-26 北京有雪的日子 
select dt,tmp_h,tmp_l,con from weather_rcd_china 
where city='beijing'and con='雪'
;
2025-11-26 条件过滤-查找1994年至1997年毕业的女教师 
select
name	,subject	,class_code	,graduate_date
from teachers 
wheregraduate_date between '1994-01-01' and '1997-12-31'
order by graduate_date
;
2025-11-26 条件过滤-查找1994年至1997年毕业的女教师 
select * from teachers 
wheregraduate_date between '1994-01-01' and '1997-12-31'
order by graduate_date
;
2025-11-26 条件过滤-符合条件的班主任 
select name ,subject,class_code,qualification
from teachers
where fir_degr='清华大学'or fir_degr='北京大学' and head_teacher is not null
order by name asc 
;
2025-11-26 条件过滤-符合条件的班主任 
select name ,subject,class_code,qualification
from teachers
where fir_degr='清华大学'or fir_degr='北京大学'
order by name asc
;
2025-11-26 条件过滤-符合条件的班主任 
select name ,subject,class_code,qualification
from teachers
where fir_degr='清华大学'or fir_degr='北京大学'
order by name;
2025-11-26 查询所有起点或终点为“海底捞西丽店”的行程记录 
select * 
from didi_sht_rcd 
where start_loc='海底捞西丽店' or end_loc='海底捞西丽店' 
;
2025-11-26 经过3个象限的一元一次函数 
select * from numbers_for_fun 
where a=0 and 
b!=0 
and c!=0;
2025-11-26 经过至少两个象限的一元一次函数 
select * from numbers_for_fun 
where 
a=0 and
b!=0 and
c!=0
;
2025-11-26 经过至少两个象限的一元一次函数 
select * from numbers_for_fun 
where 
a=0 and
b!=0
;
2025-11-26 经过至少两个象限的一元一次函数 
select * from numbers_for_fun 
where 
a=0
;
2025-11-26 经过至少两个象限的一元一次函数 
select * from numbers_for_fun 
;
2025-11-25 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and ( -(c*c/b)>=10 or (c*c/b)>=10)
;
2025-11-25 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and -(c/b*c)>=10
;
2025-11-25 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and -(c/b*c)>=5
;
2025-11-23 一元一次函数形成的等腰三角形 
select * 
from numbers_for_fun 
where a=0 and (b=1 or b=-1) and c!=0;
;
2025-11-23 一元一次函数形成的等腰三角形 
select * 
from numbers_for_fun 
where a=0 and b=1 or b=-1 and c!=0;
;
2025-11-23 一元一次函数形成的等腰三角形 
select * 
from numbers_for_fun 
where a=0 and (b=1|-1) and c!=0;
;
2025-11-23 一元一次函数形成的等腰三角形 
select * 
from numbers_for_fun 
where a=0 and b=1 and c!=0;
;