I have tried several ways of setting the auto increment value on the primary key ID on a table with no luck.
Doesn't work for me...
id INT NOT NULL AUTO_INCREMENT = 10000,
Tried this...
UPDATE tablename SET id = id + 10000;
Tried this..
ALTER TABLE tablename AUTO_INCREMENT = 10000;
Tried this..
CREATE TABLE tablename (
...
) ENGINE = MyISAM AUTO_INCREMENT = 10000;
What is the proper way to set this when creating a table using SQL?