Skip to content
Advertisement

Update statement with inner join on Oracle ORA-01427

ORA-01427: single-row subquery returns more than one row ORA-06512:
at “SYS.DBMS_SQL”, line 1721

I need to do update with inner join in ORACLE

Advertisement

Answer

The script you provided above is going to update all rows in the table because you do not have a where clause. If you really want to update all rows in the table, then this should work.

If you only want to update the rows for coach Sidny Jonson, then this should work.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement