使用 MySQL SUM() 求和,并为列标题指定别名


对于别名,使用如下语法,其中我们显示别名 −

select sum(yourColumnName) as anyAliasName from yourTableName;

我们首先创建一个表 −

mysql> create table DemoTable1800
     (
     Salary int
     );
Query OK, 0 rows affected (0.00 sec)

使用 insert 命令在表中插入一些记录 −

mysql> insert into DemoTable1800 values(18000);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1800 values(32000);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1800 values(50000);
Query OK, 1 row affected (0.00 sec)

使用 select 语句显示表中的所有记录 −

mysql> select * from DemoTable1800;

这将产生如下输出 −

+--------+
| Salary |
+--------+
|  18000 |
|  32000 |
|  50000 |
+--------+
3 rows in set (0.00 sec)

以下是求和并将别名设置为列标题的查询 −

mysql> select sum(Salary) as Total from DemoTable1800;

这将产生如下输出 −

+--------+
| Total  |
+--------+
| 100000 |
+--------+
1 row in set (0.00 sec)

更新于: 2019 年 12 月 23 日

444 次访问

开启您的事业

通过完成本课程认证获得证书

立即开始
广告