|
try a select insert (assuming your trying to merge the tables)
something like
INSERT INTO TABLE (fld_1, fld_2, etc)
SELECT fld_1, fld_2, etc
FROM TABLE2 WHERE (whatever you need to do)
I would do this from the table with 450 in it. The ID should then become an increment of the table with 2000 entries so the first new entry will be 2001 methinks (cant be sure without testing it, but I think it should do the trick)
Always remember to let the database do the work, no good attempting complex formula when its probably built into your database.
if your not merging them try
ALTER TABLE (your table) AUTO_INCREMENT = 2000
will set the auto_increment to 2000
Ibbo
|