排名
用户解题统计
过去一年提交了
勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。
错题集 数据思维刷题中答错的题目
| 模块 | 知识点 | 题目 | 你的答案 | 正确答案 | 操作 |
|---|---|---|---|---|---|
| 暂无错题,继续保持! | |||||
收藏
| 收藏日期 | 题目名称 | 解决状态 |
|---|---|---|
| 没有收藏的题目。 | ||
评论笔记
| 评论日期 | 题目名称 | 评论内容 | 站长评论 |
|---|---|---|---|
| 没有评论过的题目。 | |||
提交记录
| 提交日期 | 题目名称 | 提交代码 |
|---|---|---|
| 2026-08-01 | 给英语成绩中上水平的学生拔尖  |
select * from scores where exam_date = '2024-06-30' and subject = '英语' and score >=100 and score <=110 order by score desc; |
| 2026-08-01 | 找出三个班级的女生  |
select * from students
where class_codein ('C219', 'C220', 'C221')
and gender='f'
order by student_id;
|
| 2026-08-01 | 大于J小于K的手牌  |
select * from hand_permutations where (card1 > 'J' AND card1 < 'K') AND(card2 > 'J' AND card2 < 'K' ) order by id ; |
| 2026-08-01 | 2000年以前出生的男歌手  |
select * from singer_info where left(birth_date,4) < 2000 and gender = "m" ; |
| 2026-08-01 | 总分超过300分的学生  |
select student_id from subject_score where chinese+math+english >= 300 order by student_id; |
| 2026-07-31 | 国庆假期后第一天涨幅高于1%的股票  |
select ts_code, open_price,close_price from daily_stock_prices where trade_date = "2023-10-09" and pct_change > 1; |
| 2026-07-31 | 国庆假期后第一天涨幅高于1%的股票  |
select ts_code, open_price,close_price from daily_stock_prices where trade_date = "2023-10-08" and pct_change > 1; |
| 2026-07-31 | 德州扑克起手牌-最强起手牌KK+  |
select * from hand_permutations where concat(card1,card2) like '%A%A%' or concat(card1,card2) like '%A%K%' or concat(card1,card2) like '%K%A%' or concat(card1,card2) like '%K%K%' order by id; |