濮阳杆衣贸易有限公司

主頁 > 知識庫 > MySql 中聚合函數(shù)增加條件表達式的方法

MySql 中聚合函數(shù)增加條件表達式的方法

熱門標簽:陜西400電話如何申請 遵義地圖標注app 德惠市地圖標注 深圳 地圖標注賺錢真假 承德電腦地圖標注 外呼系統(tǒng)從哪買 合肥營銷外呼系統(tǒng)收費 商家地圖標注哪個好

Mysql 與聚合函數(shù)在一起時候where條件和having條件的過濾時機

where 在聚合之前過濾

當一個查詢包含了聚合函數(shù)及where條件,像這樣的情況
select max(cid) from t where t.id999
這時候會先進行過濾,然后再聚合。先過濾出ID《999的記錄,再查找最大的cid返回。

having 在聚合之后過濾

having在分組的時候會使用,對分組結(jié)果進行過濾,通常里面包含聚合函數(shù)。

SELECT ip,MAX(id) FROM app
GROUP BY ip
HAVING MAX(id)>=5 

先分組,再聚合,然后過濾聚合結(jié)果大于等于5的結(jié)果集

二者的區(qū)別:

where是先執(zhí)行,然后再執(zhí)行聚合函數(shù)。having是在聚合函數(shù)執(zhí)行完之后再執(zhí)行。

下面是補充

有個需求,某張表,有個狀態(tài)字段(1:成功,2:失敗,類似這樣的),現(xiàn)要用日期分組統(tǒng)計不同狀態(tài)下的數(shù)量

先寫了個子查詢

select aa.logDate,aa.totalLogs 
 ,(select count(1) from dxp.dxp_handlermodel where aa.logDate=DATE_FORMAT( startTime, '%Y-%m-%d') and executeStatus=1) pendingLogs
 ,(select count(1) from dxp.dxp_handlermodel where aa.logDate=DATE_FORMAT( startTime, '%Y-%m-%d') and executeStatus=2) successLogs
 ,(select count(1) from dxp.dxp_handlermodel where aa.logDate=DATE_FORMAT( startTime, '%Y-%m-%d') and executeStatus=3) errorLogs
 ,(select count(1) from dxp.dxp_handlermodel where aa.logDate=DATE_FORMAT( startTime, '%Y-%m-%d') and executeStatus=4) callbackErrorLogs
from
(
 select
 DATE_FORMAT( a.startTime, '%Y-%m-%d') logDate,
 count(1) totalLogs
 from dxp.dxp_handlermodel a 
 group by DATE_FORMAT( a.startTime, '%Y-%m-%d') 
) aa

執(zhí)行相當慢,想到count中能不能加條件,找了一下,如下:

select
DATE_FORMAT( startTime, '%Y-%m-%d') logDate,
 count(1) totalLogs,
 count(if(executeStatus=1,true,null)) pendingLogs,
 count(if(executeStatus=2,true,null)) successLogs,
 count(if(executeStatus=3,true,null)) errorLogs,
 count(if(executeStatus=4,true,null)) callbackErrorLogs
from dxp.dxp_handlermodel
group by DATE_FORMAT( startTime, '%Y-%m-%d')

簡明易懂,且執(zhí)行效率非常高

其它的聚合函數(shù)也可以用,如SUM等其他聚合函數(shù)

實戰(zhàn)示例:

select count(if(create_date  '2017-01-01' and host_profile_id = '9294d2bf-f457-4fe5-9a36-e5f832310dc2',true,null)) from profile_visit_log 
-- 等同于 
select count(if(create_date  '2017-01-01',true,null)) count from profile_visit_log where host_profile_id = '9294d2bf-f457-4fe5-9a36-e5f832310dc2'

好了這篇文章就介紹到這,希望大家以后多多支持腳本之家。

您可能感興趣的文章:
  • MySQL 聚合函數(shù)排序
  • MySQL 分組查詢和聚合函數(shù)
  • MySQL查詢排序與查詢聚合函數(shù)用法分析
  • MySQL中聚合函數(shù)count的使用和性能優(yōu)化技巧
  • MySQL必備基礎(chǔ)之分組函數(shù) 聚合函數(shù) 分組查詢詳解

標簽:巴中 貴州 三門峽 新余 商丘 贛州 揚州 南陽

巨人網(wǎng)絡(luò)通訊聲明:本文標題《MySql 中聚合函數(shù)增加條件表達式的方法》,本文關(guān)鍵詞  MySql,中,聚合,函數(shù),增加,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MySql 中聚合函數(shù)增加條件表達式的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySql 中聚合函數(shù)增加條件表達式的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    松阳县| 元氏县| 乡城县| 阿瓦提县| 嘉兴市| 南平市| 葫芦岛市| 汾西县| 安龙县| 谷城县| 上杭县| 武清区| 定西市| 沾益县| 盖州市| 湛江市| 裕民县| 金寨县| 灵川县| 雷山县| 乐都县| 莫力| 台湾省| 江口县| 白朗县| 同心县| 壶关县| 道真| 贵定县| 揭阳市| 彭州市| 宜黄县| 浦东新区| 日照市| 嘉兴市| 讷河市| 喜德县| 准格尔旗| 金昌市| 东丰县| 舞阳县|