emm
SELECT
count(id) total_pv,
count(submit_time) complete_pv,
count(DISTINCT exam_id and submit_time is not null) complete_exam_cnt
FROM
exam_record;
emm
SELECT
count(id) total_pv,
count(submit_time) complete_pv,
count(DISTINCT exam_id and submit_time is not null) complete_exam_cnt
FROM
exam_record;