国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > MySQL > 正文

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

2024-07-24 12:50:10
字體:
來源:轉載
供稿:網友

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

where 在聚合之前過濾

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

having 在聚合之后過濾

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

SELECT ip,MAX(id) FROM appGROUP BY ipHAVING MAX(id)>=5

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

二者的區別:

where是先執行,然后再執行聚合函數。having是在聚合函數執行完之后再執行。

下面是補充

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

先寫了個子查詢

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) callbackErrorLogsfrom( 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

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

selectDATE_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)) callbackErrorLogsfrom dxp.dxp_handlermodelgroup by DATE_FORMAT( startTime, '%Y-%m-%d')

簡明易懂,且執行效率非常高

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

實戰示例:

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常用聚合函數詳解php+mysql開源XNA 聚合程序發布 下載MySQL中聚合函數count的使用和性能優化技巧Mysql 相鄰兩行記錄某列的差值方法利用MySQL統計一列中不同值的數量方法示例Mysql無法選取非聚合列的解決方法
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 保山市| 石渠县| 尚志市| 探索| 科尔| 沾化县| 沈丘县| 济宁市| 康乐县| 静安区| 镇远县| 伊春市| 阿拉尔市| 清涧县| 东城区| 会理县| 吐鲁番市| 思南县| 宁城县| 邮箱| 雷山县| 黎平县| 聂拉木县| 乐山市| 赫章县| 勃利县| 大城县| 武城县| 平顺县| 阿坝县| 绥阳县| 阳泉市| 宜兴市| 商城县| 康平县| 嘉峪关市| 杭锦后旗| 泰州市| 梁平县| 阿克苏市| 喀喇沁旗|