EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

DB2 merge

Home » Data Science » Data Science Tutorials » Database Management Tutorial » DB2 merge

DB2 merge

Introduction to DB2 merge

DB2 MERGE statement is used to perform multiple operations on a particular table that is considered as the main or target table. The operations that are needed to be performed on that table depend on whether the records of that table are matching with the reference table also called as the source table.

The match is made on the basis of certain conditions and values that are maintained in both tables. These conditions can be either a single condition or even multiple conditions that are separated by using the logical operators like AND and OR operators in the query statement. Further, the MERGE statement also allows performing certain operations when records are matched and some other operations when records aren’t matched.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

In this article, we will study the syntax of the MERGE statement in DB2 and its implementation with the help of multiple examples demonstrating the usage of the MERGE statement.

Syntax 

The syntax of the MERGE statement used in DB2 is as shown below –

MERGE INTO name of the table/ name of the view
USING (table reference which will act as a source table)
ON match condition that is specified for matching the records of both the tables
WHEN MATCHED/ NOT MATCHED condition
THEN any operation that you want to perform on condition being evaluated to true
[WHEN NOT MATCHED / MATCHED
THEN any operation that you wish to perform on condition being evaluated to true
,....]

In the above syntax, we have the MERGE INTO clause used for merging the main or target table with respect to changes that are being made to the source or reference table. We can also use views in place of tables for target and source ones. Further, we can have as many WHEN MATCHED and NOT MATCHED conditions as required for performing different operations as shown above in the syntax by adding ….

Usage

We can make the use of the MERGE statement in DB2 in any of the application programs by embedding it or it can be invocated with the help of dynamic SQL statements which are nothing but the statements that can be executed and are prepared dynamically on the run time depending on the requirement. We can make use of MERGE statements with tables as well as views. Whenever we try to do the operations on the views in the MERGE statement, the corresponding reflection of the operations can be seen in the tables associated with the views ass well.

Example

Let us consider one example where we will be using the MERGE statement to update the table named bank_account_balance which is the target table and the main table which stores the data related to all the accounts and the balance of the corresponding account ids. This table needs to be updated whenever the table sum_transaction_amount which stores the data related to all the transactions that are made on all the accounts whenever any transaction is performed.

What we need to do here is that whenever any records are matched from the two tables based on the same account id then we have to update the balance of the target table which stores the balance of that account which will be dependent on the sum of the amount of the transaction that is being made for that account in the transaction table. If we don’t find any match in the bank account balance table, then we will insert a new record in the main table for that particular account whose entry is found in the sum transaction amount table.

In this case, we can make the use of MERGE statement in the following way –

MERGE INTO bank_account_balance AS bab
USING (SELECT account_id, sum(amount) sum_transaction_amount FROM account_transaction
GROUP BY account_id) AS at
ON bab.account_id = at.account_id
WHEN MATCHED THEN
UPDATE SET
balance = bab.balance + at.sum_transaction_amount
WHEN NOT MATCHED THEN
INSERT
(account_id, balance)
VALUES (at.account_id, at.sum_transaction_amount);

The execution of the above MERGE statement gives the following output

DB2 merge output 1

Consider one more example where we will maintain the stock and inventory of a particular company as and when the orders and items get delivered. We have to update the stock according to the items being delivered. If an item is already present in the stock of the company, we will increase the quantity of that particular item in the stock database table with the help of an update query. In case if no such item is present in the company, then a new entry is put in the stock table of the database. Both these operations can be done together by using the MERGE statement with stock is the main or target table and the delivered_order as the source or reference table as shown below

MERGE INTO stock AS in
USING (SELECT item_no, details, number_of_items FROM delivered_order
WHERE delivered_order.item_no IS NOT NULL) AS do
ON (in.item_no = do.item_no)
WHEN MATCHED THEN
UPDATE SET
details = do.details,
qty = in.qty + do.number_of_items
WHEN NOT MATCHED THEN
INSERT
(item_no, details, qty)
VALUES (do.item_no, do.details, do.number_of_items)

Popular Course in this category
Sale
SQL Training Program (7 Courses, 8+ Projects)7 Online Courses | 8 Hands-on Projects | 73+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (9,264 ratings)
Course Price

View Course

Related Courses
PL SQL Training (4 Courses, 2+ Projects)Oracle Training (14 Courses, 8+ Projects)

The execution of the above statement gives the following output –

DB2 merge output 2

Now, we will have a look at an example where we are maintaining the details of all the workers. And there is a main table named worker_details which will act as a target table. There is one more reference table called worker_logs which will act as the source table. Whenever any of the changes is made in the worker_logs if there is a matching record for the same worker in worker_details then we should update the mobile number and workplace for the worker in the worker details table. If no match is found then we can insert a new entry for that worker in the worker_details table using the merge statement shown below –

MERGE INTO worker_details AS w
USING (SELECT worker_id, mobile_no, workplace
FROM (SELECT worker_id, mobile_no, workplace,
ROW_NUMBER() OVER (PARTITION BY worker_id
ORDER BY log_time DESC) rn
FROM worker_logs) AS nt
WHERE rn = 1) AS l
ON w.worker_id = l.worker_id
WHEN MATCHED THEN
UPDATE SET
(mobile_no, workplace) =
(l.mobile_no, l.workplace)
WHEN NOT MATCHED THEN
INSERT
(worker_id, mobile_no, workplace)
VALUES (l.worker_id, l.mobile_no, l.workplace)

The execution of the above MERGE statement gives the following output –

output 3

Conclusion – DB2 merge

We can make use of the MERGE statement in DB2 to perform different transactions on the target table based on the operations that are being performed on the source table in order to synchronize the source and target tables with each other.

Recommended Articles

This is a guide to DB2 merge. Here we discuss the syntax of the MERGE statement in DB2 and its implementation with the help of multiple examples demonstrating the usage of the MERGE statement. You may also have a look at the following articles to learn more –

  1. DBMS Transaction Processing
  2. MariaDB bind-address
  3. MariaDB List Databases
  4. MySQL InnoDB

All in One Data Science Bundle (360+ Courses, 50+ projects)

360+ Online Courses

50+ projects

1500+ Hours

Verifiable Certificates

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
Database Management Tutorial
  • DB2
    • DB2? current date
    • DB2 purescale
    • DB2 backup
    • DB2 restore
    • DB2 C Express
    • DB2 Version
    • DB2? Architecture
    • DB2? Data Types
    • DB2? load
    • DB2? order by
    • DB2 date
    • DB2 NVL
    • DB2? update
    • DB2 warehouse
    • DB2 grant
    • DB2 database
    • DB2 VARCHAR
    • DB2? INSERT
    • DB2 LISTAGG
    • DB2 LIKE
    • DB2 TRUNCATE TABLE
    • DB2 LIST TABLES
    • DB2 between
    • DB2? current timestamp
    • DB2? length
    • DB2? bind
    • DB2 limit rows
    • DB2? export
    • DB2 with
    • DB2 Create Table
    • DB2 case statement
    • DB2 CAST
    • DB2 Functions
    • DB2 Date Functions
    • DB2? row_number
    • DB2 trim
    • DB2? Translate
    • DB2 UNION
    • DB2 timestamp
    • DB2? TIMESTAMPDIFF
    • DB2? replace
    • DB2 merge
    • DB2 COALESCE
    • DB2 ISNULL
    • DB2? explain
    • DB2 Join
    • DB2 alter column
    • DB2 rename column
    • DB2? Describe Table
    • DB2? rename table
    • DB2 List Databases
    • DB2 LUW
    • DB2 Query
    • DB2 GROUP BY
    • DB2 TO_DATE
    • View Serializability in DBMS
    • MariaDB Join
    • MariaDB JSON
    • MariaDB? show databases
    • Dataset Normalization
    • MariaDB Max Connections
    • jdbc connection
    • MariaDB GUI
  • DataBase Management
    • Text Data Mining
    • Roles of Database Management System in Industry
    • SQL Server Database Management Tools
    • Databricks CLI
    • Database administrator skills
    • Database Management Systems Advantages
    • Database Testing Interview Questions
    • Data Administrator
    • Database Administrator
    • Database Management Software
    • DataStage
    • Types of Database Models
    • Types of Database
    • Hierarchical Database Model
    • Relational Database
    • Relational Database Advantages
    • Operational Database
    • What is RDBMS?
    • What is DB2?
    • Data Masking Tools
    • Database Security
    • Data Replication
    • Bitmap Indexing
    • Second Normal Form
    • Third Normal Form
    • Fourth Normal Form
    • Data Definition Language
    • Data Manipulation Language
    • Data Control Language
    • Transaction Control Language
    • Conceptual Data Model
    • Entity-Relationship Model
    • Relational Database Model
    • Sequential File Organization
    • Checkpoint in DBMS
    • Mapping Constraints in DBMS
    • Teradata Create Table
    • Centralized Database
    • Data Storage in Database
    • Thomas write Rule
    • DBA Interview Questions
    • What is JDBC?
    • jdbc hive
    • Apriori Algorithm
    • JDBC Architecture
    • JDBC Interview Questions
    • Wildcard Characters
    • Distributed Database System
    • Multidimensional Database
  • PL/SQL
    • What is PL/SQL?
    • Careers in PL/SQL
    • PLSQL procedure
    • PL/SQL Exception
    • PL/SQL LIKE
    • PL/SQL Raise Exception
    • PLSQL rowtype
    • PLSQL? bind variables
    • PL/SQL Record
    • PL/SQL WITH
    • PL/SQL bulk collect
    • PL/SQL Block Structure
    • PL/SQL else if
    • PL/SQL nvl2
    • PL/SQL Package
    • PL/SQL exists
    • PL/SQL instr
    • PL/SQL listagg
    • PL/ SQL Formatter
    • PLSQLlength
    • PL/SQL Commands
    • PL/SQL Data Types
    • CASE statement in PL/SQL
    • PL/SQL IF Statement
    • Loops in PL/SQL
    • PL/SQL Add Column
    • For Loop in PLSQL
    • PL/SQL Cursor Loop
    • PLSQL Array
    • Cursors in PL/SQL
    • PL/SQL FOR Loop Cursor
    • PL/SQL Queries
    • PL/SQL SELECT INTO
    • PL/SQL TO_CHAR
    • PL/SQL UNION
    • PL/SQL NOT EQUAL
    • PL/SQL varray
    • PL/SQL Concatenate
    • PL/SQL UPDATE
    • PL/SQL TRIM
    • PL/SQL GROUP BY
    • PL/SQL GOTO
    • PL/SQL Date Functions
    • PL/ SQL having
    • PL/SQL to_DATE
    • PL/SQL NVL
    • PLSQL format date
    • PLSQL mod
    • PLSQL round
    • PL/SQL Boolean
    • PL/SQL exit
    • PL/SQL DECODE
    • PL/SQL ROWNUM
    • PLSQL?pivot
    • PLSQL string functions
    • PL/SQL Block
    • PL/SQL Function
    • PL/SQL Unwrapper
    • PL/SQL Table
    • PL/SQL ALTER TABLE
    • PLSQL execute immediate
    • Triggers in PL/SQL
    • PL/SQL Collections
    • PL/SQL stored procedure
    • PL/SQL Anonymous Block
    • PLSQL Interview Questions
  • TSQL Basic
    • TSQL
    • What is T-SQL
    • T-SQL Commands
    • T-SQL String Functions
    • TSQL Interview Questions
  • MariaDB
    • MariaDB Versions
    • MariaDB?list users
    • MariaDB Commands
    • MariaDB odbc
    • MariaDB Workbench
    • MariaDB for windows
    • MariaDB Server
    • MariaDB? Data Types
    • MariaDB?boolean
    • MariaDB phpMyAdmin
    • MariaDB Mysqldump
    • MariaDB Java Connector
    • MariaDB insert
    • MariaDB UPDATE
    • MariaDB? rename column
    • MariaDB AUTO_INCREMENT
    • MariaDB Timezone
    • MariaDB GROUP_CONCAT
    • MariaDB wait_timeout
    • MariaDB MaxScale
    • MariaDB? with
    • MariaDB? create?table
    • MariaDB? SHOW TABLES
    • MariaDB alter table
    • MariaDB List Tables
    • MariaDB JSON Functions
    • MariaDB Foreign Key
    • MariaDB? trigger
    • MariaDB Grant All Privileges
    • MariaDB Select Database
    • MariaDB? create database
    • MariaDB Delete Database
    • MariaDB List Databases
    • MariaDB Functions
    • MariaDB? TIMESTAMP
    • MariaDB create user
    • MariaDB add user
    • MariaDB show users
    • MariaDB Delete User
    • MariaDB? change user password
    • MariaDB? change root password
    • MariaDB reset root password
    • MariaDB IF
    • MariaDB bind-address
    • MariaDB Transaction
    • MariaDB Cluster
    • MariaDB Logs
    • MariaDB Encryption
    • MariaDB? backup
    • MariaDB Replication
    • MariaDB max_allowed_packet
    • MariaDB? performance tuning
    • MariaDB export database
    • MariaDB? import SQL
  • SQLite
    • What is SQLite
    • SQLite Commands
    • SQLite Data Types
    • SQLite COUNT
    • SQLite Boolean
    • SQLite autoincrement
    • SQLite select
    • SQLite? Bulk Insert
    • SQLite? add column
    • SQLite? concat
    • SQLite BETWEEN
    • SQLite group by
    • SQLite CASE
    • SQLite group_concat
    • SQLite array
    • SQLite? enum
    • SQLite sum
    • SQLite create table
    • SQLite Alter Table
    • SQLite Create Database
    • SQLite Delete
    • SQLite connection string
    • SQLite Database
    • SQLite Describe Table
    • SQLite Show Tables
    • SQLite exit
    • SQLite create index
    • SQLite foreign key
    • SQLite Stored Procedures
    • SQLite Extension
  • DBMS
    • Introduction To DBMS
    • DBMS ER Diagram
    • What is DBMS?
    • DBMS join
    • DBMS Functions
    • Data Administrator in DBMS
    • DBMS Canonical Cover
    • DBMS Log-Based Recovery
    • DBMS Multivalued Dependency
    • Netezza Database
    • DBMS Concepts
    • DBMS Constraints
    • DBMS_Scheduler
    • B+ Tree in DBMS
    • DBMS_LOB
    • dbms entity
    • DBMS Foreign Key
    • DBMS Users
    • DBMS_Metadata.get_ddl
    • Relational Algebra in DBMS
    • DBMS Components
    • DBMS Features
    • DBMS Models
    • DBMS Relational Model
    • Hashing in DBMS
    • DBMS network model
    • Relationship in DBMS
    • ER Model in DBMS
    • Data Models in DBMS
    • Static Hashing in DBMS
    • Advantages of DBMS
    • dbms_output.put_line
    • DBMS Data Dictionary
    • dbms_xplan.display_cursor
    • Normal Forms in DBMS
    • DBMS helps achieve
    • DBMS 3 tier Architecture
    • Relational Calculus in DBMS
    • Serializability in DBMS
    • File Organization in DBMS
    • DBMS Transaction Processing
    • States of Transaction in DBMS
    • Functional Dependency in DBMS
    • Generalization in DBMS
    • Data Independence in DBMS
    • Lock Based Protocols in DBMS
    • Deadlock in DBMS
    • Integrity Constraints in DBMS
    • Concurrency Control in DBMS
    • Validation Based Protocol in DBMS
    • DBMS Locks
    • Normalization in DBMS
    • Transaction Property in DBMS
    • Specialization in DBMS
    • Aggregation in DBMS
    • Types of DBMS

Related Courses

SQL Certification Course

PL/SQL Certification Course

Oracle Certification Course

Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2022 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

Independence Day Offer - SQL Certification Course Learn More