Good morning,
I need to update data in bulk in mySQL tables. What I have:
Tabla1 => Donde quiero actualizar datos, tengo 2 columnas, ID1 y VIEJOTEXTO.
Tabla2 => Una tabla con 2 columnas, ID1 y ID3.
Tabla3 => Tabla donde tengo que coger el dato, 2 columnas, ID3 y NUEVO TEXTO.
How can I do the UPDATE
in the Tabla1
so that, depending on the relationship that exists in the Tabla2
, I update the "VIEJOTEXTO"(Tabla1)
for "NUEVOTEXTO"(Tabla3)
?
Thank you very much!