I have more than 20 tables in my schema. Every table has auto_increment id and its adding value by 1 like 1,2,3 but only single table called "member_table" is adding by 2 like 2,4,6.
Even I have done
SET GLOBAL auto_increment_increment=1;
SET GLOBAL auto_increment_offset = 1;
But still the same table adding by 2.
Why this happen ? I ever seen like this problem.