mysql 数学函数

sum() 是 MySQL 的数学函数。此函数用于对给定表达式的值求和。

语法

select sum(aggregate_expression) from tables [where conditions]; 

参数:

aggregate_expression:要求和的列。

tables:表名。

where condition:可选,where条件。

返回:

此函数返回给定表达式的总和。

示例 1

select sum(status) from user;

输出:

mysql> select sum(status) from user;
+-------------+
| sum(status) |
+-------------+
|           2 |
+-------------+
1 row in set (0.00 sec)
即状态为1的用户为2个。