I have an update statement that is working in Mysql.(update multiple records, based on the column in another table)
UPDATE  `table1` m 
INNER JOIN
(SELECT cse_cd FROM  table2 WHERE clsf_ind='NC') t 
ON m.cse_cd = t.cse_cd 
SET m.ST_CD = 'QUEST03'
However, it does not work in Oracle. Can somebody help on this.
 
    