Skip to content

Instantly share code, notes, and snippets.

@JeromeBATAILLE
Created November 27, 2018 15:59
Show Gist options
  • Save JeromeBATAILLE/de88ed82c46956495bd44a7f49130968 to your computer and use it in GitHub Desktop.
Save JeromeBATAILLE/de88ed82c46956495bd44a7f49130968 to your computer and use it in GitHub Desktop.
SQL 3 - Modifier des informations
UPDATE `movie` SET `name`='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