排名

用户解题统计

过去一年提交了

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

错题集 数据思维刷题中答错的题目

模块 知识点 题目 你的答案 正确答案 操作
暂无错题,继续保持!

收藏

收藏日期 题目名称 解决状态
没有收藏的题目。

评论笔记

评论日期 题目名称 评论内容 站长评论
没有评论过的题目。

提交记录

提交日期 题目名称 提交代码
2026-08-31 条件过滤(2)半夜活动有猫腻,Hour函数给给力 
select *
from cmb_usr_trx_rcd
wheredate(trx_time)
 between '2024-09-01' and '2024-09-30' 
 and hour(trx_time) between 1 and 5 
    and usr_id = '5201314520' 
 order by trx_time
2026-08-31 条件过滤(1)异地男友有异常,数分闺蜜来帮忙 
select * 
from cmb_usr_trx_rcd 
where date(trx_time) between '2024-09-01' and '2024-09-30'
    and usr_id='5201314520'
 order by trx_time
2026-08-31 条件过滤(1)异地男友有异常,数分闺蜜来帮忙 
select * from cmb_usr_trx_rcd limit 5;
2026-01-09 条件过滤(1)异地男友有异常,数分闺蜜来帮忙 
select
    *
from
    cmb_usr_trx_rcd
where 
    date(trx_time) between '2024-09-01' and '2024-09-30'
    and usr_id='5201314520'
order by 
    trx_time
2025-05-20 21世纪上市的银行 
select 
    * 
from 
    stock_info 
where 
   list_date > '1999-12-31'
    and industry='银行'
order by list_date
2025-05-20 每年在深交所上市的银行有多少家 
select 
    year(list_date) as Y 
    ,count(distinct ts_code) as cnt
from 
    stock_info
where 
    ts_code like '%SZ'
    and industry = '银行'
group by 
    year(list_date)