Mysql 根据时间统计总数

代码写法:

    SELECT
            date_format(examinee_pay_time, '%Y-%m-%d') as payDate,
            COUNT(examinee_id) As realityApplyCount, <!-- 日缴费次数 -->
            sum((CASE WHEN examinee_exam_score IS NULL THEN exam_fee ELSE 0 END )) as realityApplyFee, <!-- 日缴费金额 -->
            exam_id,
            exam_name,
            examinee_pay_status,
            examinee_exam_status
        FROM
            schoolexam
        INNER JOIN examinee e ON exam_id = exam_item_id    AND  exam_type = examinee_apply_type
                                    AND (examinee_exam_status != '4' OR ISNULL(examinee_exam_status))
                                    AND examinee_pay_status = "1"
        <where>  
            1 = 1           
        </where>
        GROUP BY 
            date_format(examinee_pay_time, '%Y-%m-%d')

结果如下:

 

posted on 2018-10-16 09:33  手撕高达的村长  阅读(1703)  评论(0编辑  收藏  举报

导航