Is there a way to INSERT SELECT into a table with an auto-increment field?
INSERT INTO t_peep
SELECT population, name FROM cia
WHERE region='Europe';
Where I'd normally have to do something like
INSERT INTO t_peep (id, population, name) VALUES (blah_sequence.nextval, '$population', '$name');