Hi I have a dataset and I want to start and auto increment field at 5 not 1 is this possible?
cheers
JJ
|
Hi I have a dataset and I want to start and auto increment field at 5 not 1 is this possible? cheers JJ |
|||
|
|
|
You can use
See the MySQL reference for more details. |
|||
|
Yes, you can use the In my experience, it's better to do the following:
In this way, even if you're rolling back the transaction, MySQL will keep the auto-increment value, and the change will be applied instantly. You can verify this by issuing a
|
|||||
|