Desativando chaves estrangeiras no Mysql
Às vezes a gente precisa excluir uma tabela que tem relacionamento com outras.
SET FOREIGN_KEY_CHECKS=0; DROP TABLE IF EXISTS nomedatabela;
Às vezes a gente precisa excluir uma tabela que tem relacionamento com outras.
SET FOREIGN_KEY_CHECKS=0; DROP TABLE IF EXISTS nomedatabela;