Error number: 3755; Symbol: ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX; SQLSTATE: HY000
Message: Cannot drop column ‘%s’ because it is used by a functional index. In order to drop the column, you must remove the functional index.
:
错误说明:
ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX错误表明MySQL不允许在功能上索引列上删除列。
尝试从表中删除具有功能上索引的列时可能会出现此错误。
解决方法:
1.使用SHOW CREATE TABLE语句从MySQL检索现有的表结构和功能索引。
2.使用DROP INDEX语句来删除功能上的索引。
3.使用ALTER TABLE语句删除列或使用DROP COLUMN语句。