1.Error on rename of '.\db1\employee' to '.\db1\#sql2-10c4-1' (errno: 152)
Error on rename of '.\db1\employee' to '.\db1\#sql2-10c4-1' (errno: 152)
2.
错误:Cannot delete or update a parent row: a foreign key constraint fails
原因:因为有外键约束着表,所以要先删除对应的外键再删除表
解决方案:
ALTER TABLE 表名 DROP FOREIGN KEY 外键名称; -- 删除外键
DROP TABLE 表名; -- 删除表名