
今天在mysql删除条目报错Cannot delete or update a parent row:a foreign key constraint fails 错误,下面我们一看解决办法.
在SQLyog中删除条目出现Cannot delete or update a parent row:a foreign key constraint fails//www.xiariboke.net
原因是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据.
如果需要强制删除可以做如下操作:SET FOREIGN_KEY_CHECKS = 0;
执行上面的语句后就可以删...