| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: multiple inserts in a single sql statement
Alternatively:
insert
into <table>
(
<column 1>
, <column 2>
, ...
)
select <value 1>
, <value 2>
, ...
from DUAL
union all
select <value 1>
, <value 2>
, ...
from DUAL
union all
...
G.
![]() |
![]() |