When I try to execute the script below on sql developer I've got this exception :
- 00000 - "SQL command not properly ended"
UPDATE T1 SET T1.IDC= T2.IDC
FROM T1
JOIN T2 ON (T1.IDC=T2.IDO);
I don't get what's wrong with my script. Can Anyone help please?