0

我正在尝试基于 Hash_val 合并和更新目标表。但我得到了错误。 不支持这种合并条件。 下面是代码。

merge into table1 as t1 
using table2 as t2
on hash_md5(t1.col1||t1.col2||t1.col3)=hash_md5(t2.col1||t2.col2||t2.col3)
when matched then
update t1.col4='XYZ' 
4

1 回答 1

0

将合并的连接条件分解成它的子部分怎么样

merge into table1 as t1 
using table2 as t2
on t1.col1=t2.col1
and t1.col2=t2.col2
and t1.col3=t2.col3

when matched then update set t1.col4='XYZ'  

这应该有效地执行与 concat-single 标准上的连接相同的操作。

于 2020-10-26T08:15:34.593 回答