数据库钱包表有日期、收入、支出三个字段。用mysql语句计算每日余额,得如下结果
select m.*, @total :=@total + 收入 - 支出 as 钱包余额 (
select * from 钱包, (SELECT @total := 0) t
order by 日期
)m