I want to update each row of a oracle table based on another table's rows. To be more specific, There's a table called Contact with the following fields:
code(PK), name, mobile, email
There's also another table called Contact_Updated with same fields. The question is how to update Contact records with their equivalent in Contact_Updated table?
any idea?