Hi,
in the table structure there is duplicate unique key on same column
as well as key also for that column
UNIQUE KEY `FormID` (`FormID`),
UNIQUE KEY `FormID_2` (`FormID`),
KEY `formtracker_formid_index` (`FormID`),
I think duplicate UNIQUE KEY l make effect on insert performance
Is Index Key on column required as UNIQUE KEY is already applied?
will dropping one of the UNIQUE KEY make insert faster?