Answers for "insert all or first in oracle sql"

SQL
1

insert all or first in oracle sql

insert [ all | first ]
  when test1 then 
    into t1 ...
  when test2 then 
    into t2 ...
    into t3 ...
  else
    into t4 ...
  select * from query;
Posted by: Guest on April-24-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language