I am trying to do this (the real code is a bit large - so for brevity....)
insert into <table>
select a.column, b.column
from table_a table_b
where <statement>
union
select a.column, b.column
from table_a table_b
where <statement>
and I get the error
ERROR at line 1: <table>
ORA-00947: not enough values
Can I do this or not ?
Alex
insert into <table>
select a.column, b.column
from table_a table_b
where <statement>
union
select a.column, b.column
from table_a table_b
where <statement>
and I get the error
ERROR at line 1: <table>
ORA-00947: not enough values
Can I do this or not ?
Alex