Skip to content

Instantly share code, notes, and snippets.

@par38
Created November 26, 2018 13:05
Show Gist options
  • Save par38/0d83b14774fcffd42f21918242488848 to your computer and use it in GitHub Desktop.
Save par38/0d83b14774fcffd42f21918242488848 to your computer and use it in GitHub Desktop.
phpMyAdmin DELETE
# Supprimer le film ayant l'ID 5
DELETE FROM `movie` WHERE id='5';
# Supprimer les films dont l'ID est supérieur à 10
DELETE FROM `movie` WHERE id > '10';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment