I have two tables in a database, one has 250k records, and the other has 1 mil records. I need to add the 250k one in with the 1 mil. They both have the same sturcture...anybody know how to do this? Thanks in advance
INSERT INTO destination SELECT * FROM source Something like that should pretty much take care of adding the records from one table into another.