In both SQL and T-SQL, I have updated the records based on the below query:
Update Tablename1
SET  COlumn name : 
FROM Tablename1  one 
JOIN Tablename2  two
 ON one.PDPD_ID = two.PDPD_ID
AND one.TYPE =  two.TYPE
But, In Oracle I am unable to execute the query.
Any help would be appreciated
 
     
    