网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Mysql中使用count加条件统计

MySQL中count()函数的一般用法是统计字段非空的记录数,所以可以利用这个特点来进行条件统计,注意这里如果字段是NULL就不会统计,但是false是会被统计到的,记住这一点,我们接下来看看几种常见的条件统计写法。

黄梅网站建设公司创新互联建站,黄梅网站设计制作,有大型网站制作公司丰富经验。已为黄梅1000多家提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的黄梅做网站的公司定做!

测试环境

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数据表a,包含id和num两个字段

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

Query OK, 0 rows affected (0.04 sec)

插入测试数据,为了看count()函数的效果,我们插入两个空数据

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中的数据,与后面的统计做比较

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)

调用count()函数看效果,如果使用count(*)会查询出所有的记录数,但如果使用count(num)发现只有4条数据,num为NULL的记录并没有统计上

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)

条件统计无锡×××医院 https://yyk.familydoctor.com.cn/20612/

count()函数中使用条件表达式加or null来实现,作用就是当条件不满足时,函数变成了count(null)不会统计数量

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

| count(num > 200 or null) |

| 2 |

1 row in set (0.22 sec)

count()函数中使用if表达式来实现,当条件满足是表达式的值为非空,条件不满足时表达式值为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()函数中使用case when表达式来实现,当条件满足是表达式的结果为非空,条件不满足时无结果默认为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)

总结

使用count()函数实现条件统计的基础是对于值为NULL的记录不计数,常用的有以下三种方式,假设统计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


分享名称:Mysql中使用count加条件统计
当前路径:http://bjjierui.cn/article/pihigs.html

其他资讯