Posts by Wladimir • 1 point
1 post
-
0
votes2
answers2482
viewsA: Modification update between two Oracle tables
update RDESTINO a set (a.nome) = (select b.nome from RORIGEM b where a.chave = b.chave) where a.documento = variavel and Exists (select * from RORIGEM b where (a.chave = b.chave)); Below is an…