
排名
用户解题统计
过去一年提交了
勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。
收藏
收藏日期 | 题目名称 | 解决状态 |
---|---|---|
没有收藏的题目。 |
评论笔记
评论日期 | 题目名称 | 评论内容 | 站长评论 |
---|---|---|---|
2024-12-30 | Halo出行-通勤活跃用户标签开发  | ||
2024-12-30 | Halo出行-通勤活跃用户标签开发  |
提交记录
提交日期 | 题目名称 | 提交代码 |
---|---|---|
2025-01-02 | 输出地区为北京的所有银行  |
select * from stock_info where area = '北京' and industry = '银行' order by list_date |
2025-01-02 | 1989年12月13日出生的女歌手  |
select * from singer_info where birth_date = '1989-12-13' and gender = 'f' |
2025-01-02 | 1989年12月13日出生的女歌手  |
select * from singer_info where birth_date = '1989-12-13' and gender = 'm' |
2025-01-02 | 找出所有港台歌手  |
select * from singer_info where type2 = '港台' order by singer_id |
2025-01-02 | 找出所有港台歌手  |
select * from singer_info where type2 = '港台' and type3 = '个人' order by singer_id |
2025-01-02 | 找出所有港台歌手  |
select * from singer_info where type2 = '港台' and type3 = '个人'; |
2025-01-02 | 找出所有港台乐队  |
select * from singer_info where type2 = '港台' and type3 = '乐队' order by singer_id |
2025-01-02 | 找出所有港台乐队  |
select * from singer_info where type2 = '港台' order by singer_id |
2025-01-02 | 用户"kjhd30"的第一笔未完成订单  |
select * from didi_order_rcd where cust_uid = 'kjhd30' and finish_time < call_time order by call_time limit 1 |