【发布时间】:2020-11-26 13:52:05
【问题描述】:
我在 redshift 中有一个容量很大的表,我需要在不同的列上运行多个更新语句,加入一些静态表需要一个多小时才能完成所有更新执行,有什么办法可以提高性能对于这个查询。
例如:
update customer
set x=y.x
from y
update customer
set z=a.z
from a
update customer
set b=d.b
from b
【问题讨论】:
标签: sql amazon-redshift