0

我正在尝试执行此查询:

DROP TABLE 类别`

但我有一个错误:

#1217 - Cannot delete or update a parent row: a foreign key constraint fails

我也有一个不同的表items,我也不能删除它。这两个表曾经有一个连接(items表有一个外键category_id),但我删除了连接。目前,根本没有索引(PK 除外)。

如何删除这些表?

4

1 回答 1

2

您可以使用information_schema来找出哪个表正在引用您的categories表:

select table_Schema,table_name 
from information_schema.key_column_usage 
where referenced_table_name = 'categories';
于 2013-03-27T21:27:19.447 回答