题解 | #统计作答次数#
统计作答次数
https://www.nowcoder.com/practice/45a87639110841b6950ef6a12d20175f
SELECT COUNT(id) total_pv, COUNT(submit_time) complete_pv, COUNT(DISTINCT IF(submit_time IS NOT NULL, exam_id, NULL)) complete_exam_cnt FROM exam_record;
COUNT(submit_time) complete_pv 不会统计null个数
第四行需掌握 distinct if 用法