create table tablename (
id integer unsigned not null AUTO_INCREMENT,
....
primary key id
);
I need the primary key to start from 1000.
I'm using MySQL.
See Question&Answers more detail:oscreate table tablename (
id integer unsigned not null AUTO_INCREMENT,
....
primary key id
);
I need the primary key to start from 1000.
I'm using MySQL.
See Question&Answers more detail:os