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 7921003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:25:27+00:00 2026-06-03T16:25:27+00:00

This is probably a very simple question for you SQL folks out there. I

  • 0

This is probably a very simple question for you SQL folks out there.

I have a temp table (TMP_VALIDATION_DATA) in which I’ve stored the old and new values of some fields I wish to update in a production table (PROVIDER_SERVICE), plus the uuids of the PROVIDER_SERVICE records that need to be updated.

What I want to accomplish is this, in pseudo-code:

For every prov_svc_uuid uuid in TMP_VALIDATION_DATA table
  Set PROVIDER_SERVICE_RATE.END_DATE = NewPvSvcEndDate
  Where [uuid in temp table] = [uuid in PROVIDER_SERVICE table] 
end for

Is this Update statement going to accomplish what I need?

update PROVIDER_SERVICE
set END_DATE = (
  select NewPvSvcEndDate 
  from TMP_VALIDATION_DATA T
  where T.PROVIDER_SERVICE_UUID = PROVIDER_SERVICE.PROVIDER_SERVICE_UUID 
)

If my UPDATE is incorrect, will you please provide the correction? Thanks.

  • 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-06-03T16:25:30+00:00Added an answer on June 3, 2026 at 4:25 pm

    Your query will update all records and you might get an error if you have more than one record in your subquery. I would also change your syntax to a JOIN similar to below.

    update P
    set END_DATE = T.NewPvSvcEndDate
    FROM PROVIDER_SERVICE P
    JOIN TMP_VALIDATION_DATA T
       ON P.PROVIDER_SERVICE_UUID = T.PROVIDER_SERVICE_UUID
    

    If you don’t want to UPDATE all records, then add a WHERE clause.

    My suggestion is if you don’t know how many records would be included in the UPDATE, write your query as a SELECT first, then change it to an UPDATE. So for this one:

    SELECT P.END_DATE, T.NewPvSvcEndDate
    FROM PROVIDER_SERVICE P
    JOIN TMP_VALIDATION_DATA T
       ON P.PROVIDER_SERVICE_UUID = T.PROVIDER_SERVICE_UUID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is probably a very simple and stupid question to ask, but I have
This is probably a very simple question. I am new to Rails and have
there is probably a very simple answer to this very simple question, but i
This is probably a very simple question, but I just can't figure it out.
This is probably a very simple question but I have a confusion about the
This is probably a very simple question, but at this time I have myself
I know this is probably a very simple question but how would I do
I'm new to Xcode. This is probably a very simple question to you, but
Okay, this is (probably) a very simple question, but I am afraid I know
This is probably a very simple question for some, but it has me stumped.

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.