Error Mysql when you try to delete row - Cannot delete or update a parent row: a foreign key constraint fails
You can't delete this row because any other is link to her with a foreign key
- Try to delete
- View log with
SHOW ENGINE INNODB STATUS;
- Disable foreign key
SET FOREIGN_KEY_CHECKS=0; - Delete row
- Enable foreign key
SET FOREIGN_KEY_CHECKS=1;