Activity overview
Latest activity by bowens
MySQL is returning that error because there is no unique index defined on the id column. (MySQL requires that there be a unique index. The other possibility, which you would have already figured out, is that there can be only one column defined as AUTO_INCREMENT within the table.) See more: https://www.repairtoolbox.com/mysqlrepair.html / comments
MySQL is returning that error because there is no unique index defined on the idcolumn. (MySQL requires that there be a unique index. The other possibility, which you would have already figured out...