Oracle 更新一张表中某个字段等于另一张表中的某个字段

前端之家收集整理的这篇文章主要介绍了Oracle 更新一张表中某个字段等于另一张表中的某个字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
merge into a using b on (a.XXX=b.XXX) when matched then update set a.YYY=b.yyy; 原文链接:/oracle/210896.html

猜你在找的Oracle相关文章