如何实现postgresql两张表数据的对比更新

如何实现postgresql两张表数据的对比更新,第1张

在mysql中遇到依赖表a的数据来大量更新表b的数据时可以使用update join的语法
在postgresql也可以做到 语法和mysql有一些差别

这是postgresql的update语法

update中可以包含一个form子句 当包含form子句时 where子句中需要指明update的表和form子句的关联关系
例如:
employee:id name attendance_duration
attendance: employee_id duration date
将全部员工上月的出勤时间累加到employee表的attendance_duration中
update employee set attendance_duration=attendance_duration+tad
from (select sum(duration) from attendance where date< and date > group by employee_id) as t
where employeeid =attendanceemployee_id

利用这个特性配合case when等语法实现复杂业务逻辑 可以避免大量数据逐一更新
能极大提高update性能


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12949894.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-29
下一篇 2023-05-29

发表评论

登录后才能评论

评论列表(0条)

保存