Oracle: INSERT values from SELECT...JOIN, SQL Error: ORA-00947: not enough values -


I am trying to do the following:

  Enter in MyTable (A, B, C) Select source 1 from one to the source 2 ...   

where the source 2 contains column B and C

However Oracle It does not seem like and is telling me "SQL Error: ORA-00947: Not Enough Value".

Am I doing something wrong here? Is this syntax possible? Or I have to type it again:

  Select from one, source from 1, source 2 ou ....   

Thanks! Use many identifiers in SELECT section as INSERT section, such as:

Select INSERT in myTable (A, B, C) s1.a, s2.b, s2.c from source 1 to 1, join source 2 s2 ... ... < / Div>

Comments