Anda dapat menggunakan SQL ini untuk menghasilkan ALTER TABLES (!!YOUR_SCHEMA_HERE!!
perlu diganti dengan skema Anda):
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='!!YOUR_SCHEMA_HERE!!';
Ini akan menghasilkan SQL seperti ini:
alter table `viewpoint_test`.`answer_code` DROP FOREIGN KEY fk_answer_code_codebook_item1;
alter table `viewpoint_test`.`answer_code` DROP FOREIGN KEY fk_answer_code_questionary_answer1;
alter table `viewpoint_test`.`codebook` DROP FOREIGN KEY codebook_ibfk_1;
...
Dengan "nama skema", maksud saya nama database Anda. Itu hal yang sama.