SQL> merge into emp e 2 using (select * from dept) d 3 on (e.deptno = d.deptno) 4 when matched then update set e.deptno = d.deptno; on (e.deptno = d.deptno) * FEHLER in Zeile 3: ORA-38104: Columns referenced in the ON Clause cannot be updated: "E"."DEPTNO" SQL> r 1 update 2 (select e.deptno emp_no, d.deptno dept_no 3 from emp e, dept d 4 where e.deptno = d.deptno) 5* set emp_no = dept_no 14 Zeilen wurden aktualisiert.
Wobei das Beispiel in diesem Fall zugegebenermaßen nicht allzu sinnvoll ist ...
Keine Kommentare:
Kommentar veröffentlichen