How about,
I am running a scan in Oracle ( Update ) using INNER JOIN , but I could not do it. This is the code I am using:
UPDATE A
SET A.status = '2', target_date=SYSTIMESTAMP
FROM Table_A A INNER JOIN TABLE_B B
ON A.employee_number=B.employee_number and A.course_number=B.course_number
WHERE A.status = '1' and NVL(B.employee_number,'')=''
The error that appears to me when executing the sentence is the following:
SQL Error: ORA-00933: SQL command not properly ended
00933. 00000 - "SQL command not properly ended"
I really do not know what I'm doing wrong. Any suggestions to my problem?
Greetings