Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6180409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:50:25+00:00 2026-05-24T00:50:25+00:00

I know there is no Update-Join statement in PL/SQL. I used to write T-SQL.

  • 0

I know there is no Update-Join statement in PL/SQL. I used to write T-SQL.

I have two tables.

Alex_Table1
---------------------------
PK         VAL
---------------------------
1          Value1
2          Value2
3          Value3


Alex_Table2
---------------------------
PK         VAL
---------------------------
1          Value1_2
3          Value3_2

I want to update VAL from Alex_Table2 to Alex_Table1 joining by PK column.

In T-SQL, that is simple

update t1 set t1.VAL = t2.VAL
from
    Alex_Table1 t1
    inner join Alex_Table2 t2 on t1.PK = t2.PK;

And the result is what I expected

Alex_Table1
---------------------------
PK         VAL
---------------------------
1          Value1_2
2          Value2
3          Value3_2

My question is how to do in PL/SQL? Thanks!

Update

Thanks Cybernate and ypercube gave me two useful solutions. They both work. However, I want to let you know the performance between these two statements.

My actual table contains 80,000 records and only 3,000 needs update.

MERGE statement takes 0.533 seconds.

UPDATE EXISTS statement takes over 3 minutes ( I did not measure the actual time. I terminated my process after 3 minutes.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T00:50:25+00:00Added an answer on May 24, 2026 at 12:50 am

    Use a MERGE statement:

    MERGE INTO Alex_Table1 t1
    USING Alex_Table2 t2
    ON (t1.PK = t2.PK)
    WHEN MATCHED THEN 
    UPDATE SET t1.VAL = t2.VAL
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First, I know that the sql statement to update table_a using values from table_b
update: I know there is no one best way to do everything. Sorry for
I know there have been a few threads on this before, but I have
I want to JOIN two table. Have no problem with that. I have problem
I know that most sql server software allows you to do A Update on
I have two MySQL tables: product has id , title , price and some
I have a routine that will be creating individual tables (Sql Server 2008) to
I know there is a attribute called update, I can use it like this,
I know there are other tools out there to parse SQL statements, but I
I know there is a registry key indicating the install directory, but I don't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.