码迷,mamicode.com
首页 > 数据库 > 详细

sql中如何 将一张表的数据 更新到另外一张表的字段中

时间:2019-03-25 19:07:29      阅读:733      评论:0      收藏:0      [点我收藏+]

标签:ali   更新   _id   nal   money   几分钟   one   ota   用户   

今天操作数据库       有个需求需要从一张流水表中有用户付款金额    还有一张  是用户的结算金额    每个用户的付款和结算费率和手续费等都不一样   需要将剩余可以结算的金额查询出来  进行更新到各自对应的用户后面  花了几分钟写出来去测试了一下  没问题  

万变不离其中   依然还是  在 update  +表(及其关联表) +set  +更改字段 +where 条件

update merchant m join (
select pc.cp_channel channelId,0.01*sum(pc.real_pay) as totalmoney, scs.flow ,(0.01*sum(pc.real_pay))-flow as settlementmoney
from pay_record pc
right join
(select channalId,sum((money+charge)/(1-rate)) as flow from settlement where status > -1 GROUP BY channalId)
scs on scs.channalId=pc.cp_channel GROUP BY pc.cp_channel
)a on a.channelId=m.channel_id

set m.money= a.settlementmoney where a.channelId=m.channel_id

 

sql中如何 将一张表的数据 更新到另外一张表的字段中

标签:ali   更新   _id   nal   money   几分钟   one   ota   用户   

原文地址:https://www.cnblogs.com/mrxiab/p/10595507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!