假设我有下表(请记住,此表将有10000多行):
id total date
1 5 2015-05-16
2 8 2015-05-17
3 4 2015-05-18
4 9 2015-05-19
5 3 2015-05-20
我希望查询提供以下结果:
1
date => 2015-05-16
total => 5
2
date => 2015-05-17
total => 13
3
date => 2015-05-18
total => 17
4
date => 2015-05-19
total => 26
5
date => 2015-05-20
total -> 29
我无法想到任何会立即执行此操作的查询,这就是为什么我不提供我尝试过的任何代码。
有什么想法?我不确定这是否仅适用于mysql,也许我必须使用和php。
答案 0 :(得分:0)
你可以这样做 -
SELECT
a.id,
a.date,
(SELECT SUM(b.total) FROM your_table WHERE b.date <= a.date) as new_total
FROM your_table a, your_table b
ORDER BY a.date ASC
答案 1 :(得分:0)
这可以使用mysql中的用户定义变量来完成,然后将运行总计作为
select
id,
total,
date
date from
(
select
id,
@tot:= @tot+total as total,
date from my_table,(select @tot:=0)x
order by date
)x
答案 2 :(得分:0)
这应该这样做:
select id, (select sum(total) from table a where a.date <= b.date) from table b