Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Last active December 24, 2015 11:58
Show Gist options
  • Save jgdoncel/6794168 to your computer and use it in GitHub Desktop.
Save jgdoncel/6794168 to your computer and use it in GitHub Desktop.
Ejemplo de actualización de un campo de un tabla tomando el valor de un campo de una tabla diferente
UPDATE Hoja1 origen, clientes_acceso destino
SET destino.password = origen.NUEVA_CLAVE
WHERE destino.IDusuario = origen.CODIGO;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment