Once you manually insert or update autoincrement column with a specific value, all future auto_increments start with the next number;
$result=mysql_query("INSERT INTO mytable
SET myValue=1,
myAutoIncrement=9999");
//Next insert will get myAutoIncrementvalue 10000
$result=mysql_query("INSERT INTO mytable SET myValue=1");
echo mysql_insert_id() ;
=> 10000
if you want to add some value to all previous records
UPDATE mytable SET myAutoIncrement=myAutoIncrement+9999
Next autoincrement should be 10000+3000 or however many rows.
ONE FINAL NOTE:
if all rows of myAutoIncrementvalue <1000000
DELETE FROM mytable where myAutoIncrementvalue <10000000
Will remove all rows from the table, but the leave the next autoincrement value intact
By contrast:
DELETE FROM mytable
(no qualifiers in where clause)
Will remove all rows from the table, but set next autoincrement value = 0