Pesquisa de site

Como fazer uma soma do valor da linha anterior com a linha atual e exibir o resultado em outra linha com o cross join do MySQL?


Vamos primeiro criar uma tabela:

mysql> create table DemoTable(Value int);
Query OK, 0 rows affected (1.79 sec)

Insira alguns registros na tabela usando o comando insert:

mysql> insert into DemoTable values(50);
Query OK, 1 row affected (0.24 sec)
mysql> insert into DemoTable values(20);
Query OK, 1 row affected (0.68 sec)
mysql> insert into DemoTable values(30);
Query OK, 1 row affected (0.18 sec)

Exiba todos os registros da tabela usando a instrução select:

mysql> select *from DemoTable;

Isso produzirá a seguinte saída:

+-------+
| Value |
+-------+
| 50    |
| 20    |
| 30    |
+-------+
3 rows in set (0.00 sec)

Aqui está a consulta para fazer uma soma das linhas anteriores no MySQL:

mysql> select t.Value,
   (@s := @s + t.Value) as Number
   from DemoTable t cross join
      (select @s := 0) p
   order by t.Value;

Isso produzirá a seguinte saída:

+-------+--------+
| Value | Number |
+-------+--------+
| 20    | 20     |
| 30    | 50     |
| 50    | 100    |
+-------+--------+
3 rows in set (0.07 sec)

Artigos relacionados: