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

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