我正在尝试基于 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'
我正在尝试基于 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'