I have a table need to update by joining condition with another table.
UPDATE a
 SET a.REF_ID = b.NEW_REF_ID
 FROM CRS_CUSTOMERS a 
 INNER JOIN DAY0_SUBSET b
 ON a.CUSTOMER_ID = b.CURRENT_CUSTOMER_ID;
The above statement just complain ORA-00933: SQL command not properly ended, syntax error highlighted on the line FROM CRS_CUSTOMERS a
 
     
    