everyone!
Currently, I am making a new schema using MySQL, and trying to alter auto_increment from 100. But sometimes when I set auto_increment from 100, it starts from 101, not 100. Is there anybody who knows why???
When I set auto_increment = 100 for the first time in the same schema, it works well. But when I try to alter auto_increment = 200, 300, or 1000, it doesn't start from the number I want. It starts from 201, 301, or 1001. I just started to study MySQL so I need help to figure out why.
Thanks in advance.