If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Hello,
I was looking at one of my tables and I noticed that the autoincrement on the column was incrementing by two and not 1. So all of the row id numbers are odd (e.g. 1,3,5,7...).
Is there a config setting that I did to make this happen?
your script to insert new rows is actually executing the INSERT statement twice, but the duplicates are getting rejected, and you don't notice it because you have IGNORE as an option on the INSERT statement