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

  • Home
  • SEARCH
  • 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 7742243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:13:49+00:00 2026-06-01T09:13:49+00:00

Just wondering if someone could help me with a very simple SQL query. I

  • 0

Just wondering if someone could help me with a very simple SQL query.

I need to transfer data from table1 to table2 where table1.jobID = table2.jobID

Should I use join ?

I would just like to fill in a NULL column with data from table1, using jobID to match.

Thanks in Advance

AC

  • 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-01T09:13:50+00:00Added an answer on June 1, 2026 at 9:13 am

    With the limited knowledge it sounds like all you need is a simple UPDATE:

    UPDATE PreviousJobsTEST
    SET dValuationDate = Jobs.dValuationDate
    FROM PreviousJobsTEST
        JOIN Jobs
            ON PreviousJobsTEST.iJobID= Jobs.iJobID
    

    If you only want it updated if it is null, then you can do this:

    UPDATE PreviousJobsTEST
    SET dValuationDate = CASE WHEN PreviousJobsTEST.dValuationDate IS NULL THEN Jobs.dValuationDate ELSE PreviousJobsTEST.dValuationDate END
    FROM PreviousJobsTEST
        JOIN Jobs
            ON PreviousJobsTEST.iJobID= Jobs.iJobID
    

    OR, based on your comment, you could do what you have listed, you just need to turn it into a SELECT behind the insert:

    INSERT INTO [DocPrep].[dbo].[PreviousJobsTEST] (dValuationDate) 
    SELECT [DocPrep].[dbo].[Jobs].[dValuationDate]
    FROM [DocPrep].[dbo].[PreviousJobsTEST]
        JOIN [DocPrep].[dbo].[Jobs] 
            ON [DocPrep].[dbo].[Jobs].[iJobID] = [DocPrep].[dbo].[PreviousJobsTEST].[iJobID]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering if someone could help me with the following issue. On my local
I am wondering if someone could help me with some probably rather simple code,
I just have a quick question, im wondering if someone could help me. I
I'm just wondering if someone could point me in the right direction here, I
I was wondering if someone could help me to get this method converted to
please could someone help me please as have just started using actionscript and really
I was wondering if someone could help with an example criteria for nhibernate. I
Im wondering if someone could help me. I have hundreds of people uploading images
I was wondering if someone could help me understanding fixing my time step within
I've been writing an implementation of malloc and was wondering if someone could help

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.