排名
用户解题统计
过去一年提交了
勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。
收藏
| 收藏日期 | 题目名称 | 解决状态 |
|---|---|---|
| 没有收藏的题目。 | ||
评论笔记
| 评论日期 | 题目名称 | 评论内容 | 站长评论 |
|---|---|---|---|
| 没有评论过的题目。 | |||
提交记录
| 提交日期 | 题目名称 | 提交代码 |
|---|---|---|
| 2026-04-15 | 大于J小于K的手牌  |
select * from hand_permutations where card1 > 'J' and card1<'K' and card2>'J' and card2<'K' |
| 2026-04-15 | 大于J小于K的手牌  |
select * from hand_permutations where card1 > 'J' and card1<'K' or card2>'J' and card2<'K' |
| 2026-04-15 | 2000年以前出生的男歌手  |
select * from singer_info where year(birth_date) <'2000' and gender='m' |
| 2026-04-15 | 总分超过300分的学生  |
select student_id from subject_score where (chinese+math+english) >=300 |
| 2026-04-15 | 国庆假期后第一天涨幅高于1%的股票  |
SELECT ts_code, open_price, close_price FROM daily_stock_prices WHERE trade_date = '2023-10-09' AND pct_change > 1; |
| 2026-04-15 | 德州扑克起手牌-最强起手牌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%K%' or concat(card1,card2) like '%K%A%' order by id |
| 2026-04-15 | 分组与聚合函数(1)Money全都花在哪,GroupBy来查一查  |
select mch_nm,sum(trx_amt) as sum_trx_amt from cmb_usr_trx_rcd where substr(trx_time,1,4) ='2024' and usr_id='5201314520' group by mch_nm order by sum_trx_amt desc |
| 2026-04-15 | 分组与聚合函数(1)Money全都花在哪,GroupBy来查一查  |
select mch_nm,trx_amt from cmb_usr_trx_rcd where usr_id='5201314520' |
| 2026-04-15 | 学生信息和班主任姓名  |
select a.name,a.class_code,a.grade_code,b.name as head_teacher_name from students a join teachers b on a.class_code=b.head_teacher order by a.student_id |