Description : The first table you see on the image needs to be updated from the eventdescription column on the second image.
I've tried using
UPDATE currentEvent
SET eventdescription = ( SELECT eh.eventDescription
FROM eventHistory eh
WHERE updateTime = (SELECT MAX (updateTime)
FROM eventHistory
WHERE eventID = eh.eventID)
)
and gives me this error
ORA-01427: single-row subquery returns more than one row ORA-06512: at
"SYS.DBMS_SQL", line 1721
Is there something I am missing , Please advise.