for a MySQL table, I want the primary ID column to be Auto_Incremented by 100, with starting value as 1. So the value will be 1, 101, 201
For SQL server, it can be achieved by following :-
CREATE TABLE Persons (
Personid int IDENTITY(1,100) PRIMARY KEY,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int
);
How can I achieve the same with MySQL? The idea behind this is to make the ID not collide with the IDs generated in other data centers.