oracle把一个表的字段更新到另一张表中

前端之家收集整理的这篇文章主要介绍了oracle把一个表的字段更新到另一张表中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
举例(一对一,tablea所有关联数据全部修改):
update tablea set column_name1=(select name2 from tableb where tableb.name3=tablea.name1)
修改一个
update tablea set column_name1=(select name2 from tableb where tableb.name3='a') where tablea.name1='A'
原文链接:https://www.f2er.com/oracle/211533.html

猜你在找的Oracle相关文章