MySQL选择累积(运行总和)列?
要选择累积列,让我们首先创建一个演示表。创建表的查询如下-
mysql> create table accumulatedDemo -> ( -> Value int -> );
使用insert命令在表中插入一些记录。查询如下-
mysql> insert into accumulatedDemo values(10); mysql> insert into accumulatedDemo values(15); mysql> insert into accumulatedDemo values(20); mysql> insert into accumulatedDemo values(25); mysql> insert into accumulatedDemo values(45);
使用select语句显示表中的所有记录。查询如下-
mysql> select *from accumulatedDemo;
这是输出-
+-------+ | Value | +-------+ | 10 | | 15 | | 20 | | 25 | | 45 | +-------+ 5 rows in set (0.00 sec)
以下是选择累积列的查询-
mysql> set @previousSum =0; mysql> select Value, @previousSum: =@previousSum+ Value AS AccumulatedColumn from accumulatedDemo;
这是输出-
+-------+-------------------+ | Value | AccumulatedColumn | +-------+-------------------+ | 10 | 10 | | 15 | 25 | | 20 | 45 | | 25 | 70 | | 45 | 115 | +-------+-------------------+ 5 rows in set (0.00 sec)
热门推荐
10 儿子立冬祝福语简短独特
11 对当兵的祝福语简短
12 侄儿高考试祝福语简短
13 伴郎红包祝福语朋友简短
14 媳妇生日简短祝福语朋友
15 公司年会祝福语简短最好
16 元旦感恩祝福语简短大全
17 红包祝福语简短10字
18 周六早晨祝福语简短