Skip to content

Instantly share code, notes, and snippets.

@sergioska
Last active August 29, 2015 13:58
Show Gist options
  • Save sergioska/9955949 to your computer and use it in GitHub Desktop.
Save sergioska/9955949 to your computer and use it in GitHub Desktop.
Delete items from a table with a constraint
-- disable foreign check
SET FOREIGN_KEY_CHECKS=0;
-- execute delete query
DELETE FROM BridgeDomainsTags;
-- enable foreign check
SET FOREIGN_KEY_CHECKS=1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment