Oracle Tutorial

What is Oracle
SQL Keywords

Oracle Wildcards

Oracle Wildcards

Oracle Aliases

Oracle Aliases

MySQL Tutorial

MySQL Tutorial

PL/SQL Tutorial

PL/SQL Tutorial

Oracle Interview Questions

Oracle Interview Questions and Answers


Oracle Update Column From Another Table Statement

In Oracle, UPDATE statement allows you to update column from another table. You can use the UPDATE statement to update columns value of a single row, a group of rows, or all rows in a table.

Oracle Update Column From Another Table Syntax

To update column from another table, use the following syntax:

Syntax

Parameters:

tablename: The table name from which you want to update.

field1: Column name to be updated.

Oracle Update Column From Another Table examples

The following Oracle statement to update column first name by fetching the data from "tblCustomerLoan" table.:

Example

Note:

In the above example, we have updated "tblCustomer" table by fetching the data from "tblCustomerLoan" table.