Oracle SQL: Updating Table Data Using Values from Another Table
Frequently, database management requires updating one table's data with values sourced from another. Let's illustrate this with two sample tables:
Table 1:
<code>id name desc ----------------------- 1 a abc 2 b def 3 c adf</code>
Table 2:
<code>id name desc ----------------------- 1 x 123 2 y 345</code>
Our goal is to update Table 1
's name
and desc
columns with data from Table 2
, matching on the id
column. The desired outcome:
Table 1 (Updated):
<code>id name desc ----------------------- 1 x 123 2 y 345 3 c adf</code>
Oracle SQL offers efficient methods for this type of correlated update:
Method 1: Correlated Subquery
This approach uses a correlated subquery within the UPDATE
statement:
UPDATE table1 t1 SET (name, desc) = (SELECT t2.name, t2.desc FROM table2 t2 WHERE t1.id = t2.id) WHERE EXISTS ( SELECT 1 FROM table2 t2 WHERE t1.id = t2.id );
This query updates each row in Table 1
where a matching id
exists in Table 2
.
Method 2: Using a Common Table Expression (CTE)
Alternatively, if the join creates a key-preserved view, a CTE provides a cleaner solution:
UPDATE (SELECT t1.id, t1.name name1, t1.desc desc1, t2.name name2, t2.desc desc2 FROM table1 t1 JOIN table2 t2 ON t1.id = t2.id) SET name1 = name2, desc1 = desc2;
This method constructs a temporary view (using a CTE) combining relevant fields from both tables, then performs the update on this view.
Both methods effectively update Table 1
based on data in Table 2
, demonstrating flexible techniques for data manipulation in Oracle SQL.
The above is the detailed content of How Can I Update an Oracle Table's Data Using Values from Another Table?. For more information, please follow other related articles on the PHP Chinese website!

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

Notepad++7.3.1
Easy-to-use and free code editor

Dreamweaver Mac version
Visual web development tools
