修复我的数据库后,我收到以下错误:
scode_tracker.ap_visits
note : The storage engine for the table doesn't support repair
scode_tracker.visit_length
note : The storage engine for the table doesn't support repair
我发现表的类型是 InnoDB。另一张表是MyISAM,修复成功。
在这里阅读了一些主题后,解决方案是将其更改为 MyISAM。我对 InnoDB 和 MyISAM 了解不多。我在创建表时没有指定类型。所以我的问题是我应该使用 MyISAM 而不是 InnoDB 吗?如果是,我怎样才能将它从 InnoDB 更改为 MyISAM?