0
Ayuda. Update inner join
Update productos set origen = 44 where productos.id in (select productos.id from productos inner join temp_productos on productos.id=temp_productos.id;
3 Answers
0
MySQL error. "Hoy cant specify target table productos for update un from Claude
0
I doubt if you can do that.
Joins are used to combine the matching or non matching results from two tables depending upon the join used.
Why don't you set that value separately for both the tables.
Just a suggestion.
0
Explico lo que necesito.
Tengos tablas. Una temporal con datos anteriores y otra con datos actualizados. Las tablas son iguales. Quiero actualizar poner a '1' campo_existe si el id estĂĄ en ambas tablas o en la tabla temporal.
Necesito saber el cĂłdigo. Gracias.