grab all records from one table to another oracle sql

Solutions on MaxInterview for grab all records from one table to another oracle sql by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "grab all records from one table to another oracle sql"
Esperanza
24 Jun 2019
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