I have a database whose one table began to automatically increment values ββby 10. I never set it explicitly, but for some reason it does. I tried resetting auto_increment_increment to 1 using the following:
SET @@auto_increment_increment=1;
But that does not change! I tried to do this using the command line, but it still doesnβt.
One more thing, on my local machine, auto_increment works fine (it is set to 1), but this is a problem on my server. When I used mysql on the command line, I logged in as the "root user".
Can anyone suggest what could be wrong with my database? Thanks for the help.
source share