Does doctrine 2 support some kind of "select into"-syntax?
In pure MySQL it would be something like this:
INSERT INTO tbl_temp2 (fld_id)
SELECT tbl_temp1.fld_order_id
FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;
I checked the manual, yet without sucess.