如何计算 MySQL 表中的总数和 true 条件值?
为此,您可以使用 COUNT()。首先让我们创建一个表 -
mysql> create table DemoTable ( Value int ); Query OK, 0 rows affected (0.69 sec)
使用插入命令在表中插入一些记录 -
mysql> insert into DemoTable values(10); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(NULL); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(20); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(40); Query OK, 1 row affected (0.16 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-------+ | Value | +-------+ | 10 | | NULL | | 20 | | 40 | +-------+ 4 rows in set (0.00 sec)
以下是计算 MySQL 表中的总值和 true 条件值的查询 -
mysql> select count(*) as TOTAL_COUNT,count(Value OR NULL) as CONDITION_TRUE from DemoTable;
这将产生以下输出 -
+-------------+----------------+ | TOTAL_COUNT | CONDITION_TRUE | +-------------+----------------+ | 4 | 3 | +-------------+----------------+ 1 row in set (0.00 sec)
广告