最爱青草蛋糕
最爱青草蛋糕
全部文章
分类
归档
标签
去牛客网
登录
/
注册
最爱青草蛋糕的博客
全部文章
(共105篇)
题解 | 试卷发布当天作答人数和平均分
with merged_table as (select ui.uid,level,tag,score,release_time, start_time,submit_time,ei.exam_id as exam_id from user_info ui join exam_record er ...
2025-09-19
0
46
题解 | 月均完成试卷数不小于3的用户爱作答的类别
#筛选用户 with t1 as (select uid,count(uid) from exam_record er where date_format(start_time,'%Y-%m') = date_format(submit_time,'%Y-%m') and date_format(s...
2025-09-18
0
29
题解 | 月均完成试卷数不小于3的用户爱作答的类别
#筛选用户 with t1 as (select uid,count(uid) from exam_record er where date_format(start_time,'%Y-%m') = date_format(submit_time,'%Y-%m') and date_format(s...
2025-09-18
0
25
题解 | 月总刷题数和日均刷题数
select date_format(submit_time,'%Y%m') as submit_month,count(1) as month_q_cnt,round(count(1)/dayofmonth(last_day(max(submit_time))),3) as avg_day_q_c...
2025-09-18
0
23
题解 | 月总刷题数和日均刷题数
with t1 as (select date_format(submit_time,'%Y%m') as submit_month,count(1) as month_q_cnt,dayofmonth(last_day(submit_time)) as days_count from practi...
2025-09-18
0
31
题解 | 统计作答次数
with t1 as (select count(1) as total_pv, 'answer' as result from exam_record), t2 as (select count(1) as complete_pv,'answer' as result from exam_rec...
2025-09-17
0
34
题解 | 饿了么需要分析不同配送员在不同天气条件下的配送效率和用户投诉情况
with t1 as (select staff_id,average_speed from delivery_staff where average_speed > 20), t2 as ( select t1.staff_id as staff_id,weather_id,delivery...
2025-09-05
0
25
题解 | 分析员工在不同项目中的绩效表现以及所属部门的平均绩效情况
with t1 as (select e.employee_id as employee_id,performance_score,department_name from employee_projects e join department_info d on e.employee_id =...
2025-09-03
0
37
题解 | 查询出每个品牌在不同月份的总销售额以及购买该品牌商品的用户的平均年龄
with t1 as (select o.order_id,category_id,order_amount,order_date,customer_id,customer_gender, case when customer_gender = '男' then 1 else 0 end as c...
2025-09-01
0
35
题解 | 分析每个员工在不同项目中的绩效情况
with t1 as (select e.employee_id as employee_id, employee_name,department,project_id, performance_score from employees e join performance per on e.emp...
2025-08-29
0
31
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页