解决删除从表,主表存在外键的问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 drop table `spring`.`city_inf`;     Error 1217: Cannot delete or update a parent row: a foreign key constraint fails SQL Statement: drop table `spring`.`city_inf`

会抛出以上的错误,无法删除此表。

但是可以通过MySQL的     ———通过 set ”外键检查=0“ 暂时禁止外键的检查,然后删除从表

SET foreign_key_checks = 0; DROP TABLE `spring`.`city_inf`;

即可以顺利删除此表

转载于:https://my.oschina.net/aijfanta/blog/535039

你可能感兴趣的:(解决删除从表,主表存在外键的问题)