gpt4 book ai didi

mysql - 无法删除索引 {index_name} : needed in a foreign key constraint

转载 作者:行者123 更新时间:2023-11-29 06:39:26 25 4
gpt4 key购买 nike

我想删除一个索引,但我不能,因为它在另一个表中使用,但我找不到在哪里

ALTER TABLE t_course DROP INDEX user_id

有办法知道它用在哪里吗?

最佳答案

要查找约束引用的其他表:

select COLUMN_NAME, CONSTRAINT_NAME, REFERENCED_COLUMN_NAME, REFERENCED_TABLE_NAME
from information_schema.KEY_COLUMN_USAGE
where TABLE_NAME = 't_course';

查看从上述查询返回的 REFERENCED_TABLE_NAME

关于mysql - 无法删除索引 {index_name} : needed in a foreign key constraint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52444760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com