溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mysql中使用count加條件統(tǒng)計

發(fā)布時間:2020-09-23 06:29:33 來源:網(wǎng)絡 閱讀:3986 作者:nineteens 欄目:MySQL數(shù)據(jù)庫

  Mysql中count()函數(shù)的一般用法是統(tǒng)計字段非空的記錄數(shù),所以可以利用這個特點來進行條件統(tǒng)計,注意這里如果字段是NULL就不會統(tǒng)計,但是false是會被統(tǒng)計到的,記住這一點,我們接下來看看幾種常見的條件統(tǒng)計寫法。

  測試環(huán)境

  Windows 10

  Welcome to the MySQL monitor. Commands end with ; or \g.

  Your MySQL connection id is 7

  Server version: 5.7.21-log MySQL Community Server (GPL)

  Copyright ? 2000, 2018, Oracle and/or its affiliates. All rights reserved.

  Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

  Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

  準備工作

  新建一個Mysql數(shù)據(jù)表a,包含id和num兩個字段

  mysql> create table a(id int, num int);

  Query OK, 0 rows affected (0.04 sec)

  插入測試數(shù)據(jù),為了看count()函數(shù)的效果,我們插入兩個空數(shù)據(jù)

  mysql> insert into a values (1,100),(2,200),(3,300),(4,300),(8,null),(9,null);

  Query OK, 6 rows affected (0.01 sec)

  Records: 6 Duplicates: 0 Warnings: 0

  查詢表a中的數(shù)據(jù),與后面的統(tǒng)計做比較

  mysql> select * from a;

  | id | num |

  | 1 | 100 |

  | 2 | 200 |

  | 3 | 300 |

  | 4 | 300 |

  | 8 | NULL |

  | 9 | NULL |

  6 rows in set (0.09 sec)

  調(diào)用count()函數(shù)看效果,如果使用count(*)會查詢出所有的記錄數(shù),但如果使用count(num)發(fā)現(xiàn)只有4條數(shù)據(jù),num為NULL的記錄并沒有統(tǒng)計上

  mysql> select count(*) from a;

  | count(*) |

  | 6 |

  1 row in set (0.03 sec)

  mysql> select count(num) from a;

  | count(num) |

  | 4 |

  1 row in set (0.04 sec)

  條件統(tǒng)計無錫×××醫(yī)院 https://yyk.familydoctor.com.cn/20612/

  count()函數(shù)中使用條件表達式加or null來實現(xiàn),作用就是當條件不滿足時,函數(shù)變成了count(null)不會統(tǒng)計數(shù)量

  mysql> select count(num > 200 or null) from a;

  | count(num > 200 or null) |

  | 2 |

  1 row in set (0.22 sec)

  count()函數(shù)中使用if表達式來實現(xiàn),當條件滿足是表達式的值為非空,條件不滿足時表達式值為NULL;

  mysql> select count(if(num > 200, 1, null)) from a;

  | count(if(num > 200, 1, null)) |

  | 2 |

  1 row in set (0.05 sec)

  count()函數(shù)中使用case when表達式來實現(xiàn),當條件滿足是表達式的結(jié)果為非空,條件不滿足時無結(jié)果默認為NULL;

  mysql> select count(case when num > 200 then 1 end) from a;

  | count(case when num > 200 then 1 end) |

  | 2 |

  1 row in set (0.07 sec)

  總結(jié)

  使用count()函數(shù)實現(xiàn)條件統(tǒng)計的基礎是對于值為NULL的記錄不計數(shù),常用的有以下三種方式,假設統(tǒng)計num大于200的記錄

  select count(num > 200 or null) from a;

  select count(if(num > 200, 1, null)) from a

  select count(case when num > 200 then 1 end) from a


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI