Skip to content

Instantly share code, notes, and snippets.

@mbylstra
Created September 18, 2013 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbylstra/6617328 to your computer and use it in GitHub Desktop.
Save mbylstra/6617328 to your computer and use it in GitHub Desktop.
temporarily disable mysql foreign key checks, so you can do something dodgy:
SET foreign_key_checks = 0;
DELETE FROM users where id > 45;
SET foreign_key_checks = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment