Created
August 27, 2016 14:24
-
-
Save gorkamu/35f6c2da75b6a4d1b286d10da79ca0d3 to your computer and use it in GitHub Desktop.
Operaciones básicas MySQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO Usuario (id, Nombre, Email, Password) VALUES ('1', 'elRey', '[email protected]','da39a3ee5e6b4b0d3255bfef95601890afd80709'); | |
SELECT * FROM Usuario; | |
UPDATE Usuario SET Email = '[email protected]' WHERE Nombre = 'elRey'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment