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 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短