I have a MySQL database, containing a table with an auto_increment primary key.
Consider the following definition as sufficient for this example:
create table test(id integer not null auto_increment primary key) engine=innodb;
Now, typically I would insert into this table using the following syntax:
insert into test() values();
This would appropriately update the auto_increment value, and that is fine.
However, I would like to insert a high value into this table (say, 1000000) but not have it update the auto_increment ID.
Is it possible to insert high values into this table in such a way as to not have an effect on the value of the auto_increment ID?
I know this is a terrible practice, but it would significantly simplify some things I have to do.
Thanks in advance.