Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created August 27, 2016 14:24
Show Gist options
  • Save gorkamu/35f6c2da75b6a4d1b286d10da79ca0d3 to your computer and use it in GitHub Desktop.
Save gorkamu/35f6c2da75b6a4d1b286d10da79ca0d3 to your computer and use it in GitHub Desktop.
Operaciones básicas MySQL
INSERT INTO Usuario (id, Nombre, Email, Password) VALUES ('1', 'elRey', 'elRey@casareal.es','da39a3ee5e6b4b0d3255bfef95601890afd80709');
SELECT * FROM Usuario;
UPDATE Usuario SET Email = 'elRey_Reshulon@casareal.es' WHERE Nombre = 'elRey';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment