对uid 相同的记录的money 求和
比如uid 387 的记录 结果uid 金额 求和的金额387 2000.00 5000.00387 3000.00 5000.00
因为我需要记录的明细 所有不能用group by
走同样的路,发现不同的人生
我知道SQL語法很強大,不過我也不是很精通,針對你的需求,我提供以下參考意見。
select a.uid,a.money,c.total_money from (select b.uid,sum(b.money) as total_money from leshi_deal_invest as b group by b.uid) as c right join leshi_deal_invest as a on a.uid = c.uid;
select b.uid, b.money, a.total from (select uid, sum(money) as total from test group by uid) as a, test as b where a.uid = b.uid
夠懶的
夠懶的