Drop all foreign key constraints for a schema

  Database, MySQL snippets

I hates the FKs, my precious.

 

SELECT 
  CONCAT(
    'ALTER TABLE ',
    table_schema,
    '.',
    table_name,
    ' DROP FOREIGN KEY ',
    constraint_name,
    ';'
  ) 
FROM
  information_schema.table_constraints 
WHERE constraint_type = 'FOREIGN KEY' 
  AND table_schema LIKE 'schemaName' ;