JoKerhhh
JoKerhhh
全部文章
分类
归档
标签
去牛客网
登录
/
注册
JoKerhhh的博客
全部文章
(共34篇)
统计复旦用户8月练题情况 关于复旦为什么不放ON里
# 外连接 select up.device_id, up.university, COALESCE(COUNT(qpd.question_id), 0) AS question_cnt, COALESCE(SUM(CASE WHEN qpd.result = 'right' THEN 1 ELS...
2024-01-21
1
159
题解 | #浙大不同难度题目的正确率#
select qd.difficult_level, ROUND(COUNT(if (qpd.result = 'right',1,NULL))/COUNT(qpd.result),4) #对的行数 / 总行数 AS correct_rate FROM user_profile AS up JOIN...
2024-01-21
0
161
题解 | #统计复旦用户8月练题情况#
# 外连接 select up.device_id, up.university, COALESCE(COUNT(qpd.question_id), 0) AS question_cnt, COALESCE(SUM(CASE WHEN qpd.result = 'right' THEN 1 ELS...
2024-01-21
0
147
题解 | #返回每个顾客不同订单的总金额#
select od.cust_id, sum(ot.item_price * ot.quantity) AS total_order from Orders AS od JOIN OrderItems AS ot ON od.order_num = ot.order_num GROUP BY od...
2024-01-21
0
314
首页
上一页
1
2
3
4
下一页
末页