当前位置:网站首页>MySQL null value processing and value replacement
MySQL null value processing and value replacement
2022-07-07 04:24:00 【Data analysis of financial Xiaobai】
SELECT user_profile.device_id,user_profile.university,IFNULL(B.question,0),IFNULL(B.RIGHT_QUESTION,0) FROM user_profile LEFT JOIN (
SELECT device_id, COUNT(*) AS question,sum((case when result='right' then 1 else 0 end)) as RIGHT_QUESTION
FROM question_practice_detail WHERE month(date)=8 GROUP BY device_id)
AS B ON user_profile.device_id=B.device_id WHERE user_profile.university=" Fudan University "
Comprehensive operation
SELECT difficult_level,sum(ar)/count(*) AS RATE FROM
(
select IF(result="right",1,0) as ar,device_id,difficult_level FROM question_practice_detail LEFT JOIN question_detail
on question_practice_detail.question_id=question_detail.question_id
)
a
WHERE device_id IN (select device_id from user_profile where university=' Zhejiang University ')
GROUP BY difficult_level ORDER BY RATE
边栏推荐
- C#使用西门子S7 协议读写PLC DB块
- NFT meta universe chain diversified ecosystem development case
- 各路行业大佬称赞的跨架构开发“神器”,你get同款了吗?
- Analysis on urban transportation ideas of 2022 Zhongqing cup C
- The most complete deployment of mongodb in history
- 2022年电工杯B 题 5G 网络环境下应急物资配送问题思路分析
- EasyCVR集群版本添加RTSP设备提示服务器ID错误,该如何解决?
- 科兴与香港大学临床试验中心研究团队和香港港怡医院合作,在中国香港启动奥密克戎特异性灭活疫苗加强剂临床试验
- [on automation experience] the growth path of automated testing
- ABAP 动态内表分组循环
猜你喜欢
EasyCVR视频广场点击播放时,主菜单高亮效果消失问题的修复
英特尔与信步科技共同打造机器视觉开发套件,协力推动工业智能化转型
视频融合云平台EasyCVR视频广场左侧栏列表样式优化
Easycvr cannot be played using webrtc. How to solve it?
【编码字体系列】OpenDyslexic字体
EasyCVR集群重启导致其他服务器设备通道状态离线情况的优化
Win11玩绝地求生(PUBG)崩溃怎么办?Win11玩绝地求生崩溃解决方法
The most complete security certification of mongodb in history
Ssm+jsp realizes the warehouse management system, and the interface is called an elegant interface
[team learning] [phase 34] Baidu PaddlePaddle AI talent Creation Camp
随机推荐
Unity3d can change colors and display samples in a building GL material
What is CGI, IIS, and VPS "suggested collection"
视频融合云平台EasyCVR视频广场左侧栏列表样式优化
见到小叶栀子
[OA] excel document generator: openpyxl module
VM virtual machine operating system not found and NTLDR is missing
SSM+JSP实现企业管理系统(OA管理系统源码+数据库+文档+PPT)
ESG全球领导者峰会|英特尔王锐:以科技之力应对全球气候挑战
MySQL data loss, analyze binlog log file
leetcode 53. Maximum Subarray 最大子数组和(中等)
Hardware development notes (10): basic process of hardware development, making a USB to RS232 module (9): create ch340g/max232 package library sop-16 and associate principle primitive devices
Redis source code learning (30), dictionary learning, dict.h
2022年电工杯B 题 5G 网络环境下应急物资配送问题思路分析
Quick completion guide of manipulator (10): accessible workspace
【OA】Excel 文档生成器: Openpyxl 模块
Mongo shell, the most complete mongodb in history
Win11控制面板快捷键 Win11打开控制面板的多种方法
pyqt5 失焦 监听无操作 定时器
Class constant pool and runtime constant pool
史上最全MongoDB之安全认证