Created
November 6, 2018 09:14
-
-
Save PhillipsHoward/5d30b6a6ddb2645c256993e35e7f9dcf to your computer and use it in GitHub Desktop.
updateSQLQUEST
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
| UPDATE movie | |
| SET lastname='Men in black' | |
| WHERE id='5'; | |
| UPDATE movie SET name='Deadpool', poster = 'https://upload.wikimedia.org/wikipedia/en/thumb/2/23/Deadpool_%282016_poster%29.png/220px-Deadpool_%282016_poster%29.png' | |
| WHERE id='8'; | |
| UPDATE movie SET comment='' WHERE id='10' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment