1--tbl_temp1 is the source
2--tbl_temp2 is the destination
3--fld_id is the columns you want to bring over
4--where statement is up to you!
5
6INSERT INTO tbl_temp2 (fld_id)
7SELECT tbl_temp1.fld_order_id
8FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;
9