Skip to Content
Oracle SQL*Plus Pocket Reference, 3rd Edition
book

Oracle SQL*Plus Pocket Reference, 3rd Edition

by Jonathan Gennick
November 2004
Intermediate to advanced
152 pages
2h 50m
English
O'Reilly Media, Inc.
Content preview from Oracle SQL*Plus Pocket Reference, 3rd Edition

Merging Data (Oracle9i and Higher)

A common data-processing problem is the need to take some data, decide whether it represents a new row in a table or an update to an existing row, and then issue an INSERT or UPDATE statement as appropriate. In the past, this has always been at least a two-step process, requiring two round-trips to the database. New in Oracle9i Database is the MERGE statement, which makes the process of inserting or updating easier and more efficient than before.

The general form of the MERGE statement is as follows:

MERGE INTO  table
USING  data_source
ON (condition)
WHEN MATCHED THEN  update_clause
WHEN NOT MATCHED THEN  insert_clause;

In this syntax, data_source can be a table, view, or query. The condition in the ON clause is what Oracle looks at to determine whether a row represents an insert or an update to the target table.

Tip

Beginning in Oracle Database 10g, you no longer need to include both the WHEN MATCHED and WHEN NOT MATCHED clauses.

Here is an example of a MERGE statement:

MERGE INTO course c
USING (SELECT course_name, period, course_hours
       FROM course_updates) cu
ON (c.course_name = cu.course_name
    AND c.period = cu.period)
WHEN MATCHED THEN
   UPDATE
   SET c.course_hours = cu.course_hours
WHEN NOT MATCHED THEN
   INSERT (c.course_name, c.period,
           c.course_hours)
   VALUES (cu.course_name, cu.period,
           cu.course_hours);

When processing this statement, Oracle reads each row from the query in the USING clause and looks at the condition in the ON clause. If the condition in ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Oracle SQL*Plus Pocket Reference

Oracle SQL*Plus Pocket Reference

Jonathan Gennick

Publisher Resources

ISBN: 9781491926680Errata Page