mysql帶條件取count記錄數
阿新 • • 發佈:2017-11-08
rtt ack 條件 統計 clas ref subject ffffff nbsp
參考方法三:
統計sub_type=‘REFUND_FEE’ 的記錄數:
方法一.select count(sub_type) from t where t.sub_type=‘REFUND_FEE’;
方法二.select sum(if( B.sub_type=‘REFUND_FEE’ ,1,0)) from t;
方法三.select count(B.sub_type=‘REFUND_FEE’ or null) from t;
解釋:
當select B.sub_type=‘REFUND_FEE’ 時:
如果sub_type為REFUND_FEE則返回1,
不空且不為REFUND_FEE否則返回0,
空時返回null。
所以B.sub_type=‘REFUND_FEE’ or null 只返回sub_type=‘REFUND_FEE’ 的,其余的都返回null ,而count(列名)時是不會統計null的個數的
註:count(*)會把null的個數也統計在內
項目sql
SELECT subjectName,doctorName,count(1) AS sumNum,
count(OVERTIMES>0 or null) as overNum //只統計OVERTIMES>0的數
from ht_personstream
WHERE 1=1
<if test="subjectId!=‘‘ and subjectId!=‘null‘">
and subjectId = #{subjectId}
</if>
<if test="startTime!=‘‘ and startTime!=‘null‘">
<![CDATA[ and date_format(ENDTIME, ‘%Y-%m-%d‘)>= #{startTime} ]]> //mysql日期格式化
</if>
<if test="endTime!=‘‘ and endTime!=‘null‘">
<![CDATA[ and date_format(ENDTIME, ‘%Y-%m-%d‘)<= #{endTime} ]]>
</if>
GROUP BY doctorId,subjectId
mysql帶條件取count記錄數