inserting data into different tables at once in oracle sql

Solutions on MaxInterview for inserting data into different tables at once in 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 - "inserting data into different tables at once in oracle sql"
Max
14 Oct 2020
1INSERT INTO table1 t1, table2 t2 
2(t1.tid, t1.date, t1.title, t2.tid, t2.date, t2.user, t2.note)
3VALUES (1,'01-JAN-15','title',1,'01-JAN-15','john','test note');
4