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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:44:47+00:00 2026-06-06T22:44:47+00:00

I was hoping to get some help with my SQL Server script. Basically, I

  • 0

I was hoping to get some help with my SQL Server script.

Basically, I have the following requirement:
In the database we have a table called Space. A Space has a length and a width.
We need to upload data from excel sheets we receive. So I upload it into a table and this table also have a length and width.

Now, I need to get the Oid from Space (Oid, Length, Width) into the #spaceTmp table (NULL, Length, Width) but the problem is that length and width can be matched in any order.

Ex:
Space table has the following:
(1, 5, 7)

#spaceTmp has the following:
(NULL, 5, 7)
(NULL, 7, 5)
(NULL, 4, 3)
(NULL, 3, 4)

I need #spaceTmp to have:
(1, 5, 7)
(1, 7, 5)
(2, 4, 3)
(2, 3, 4)

Any advice will be appreciated.

P.S. for simplicity I’m not using GUIDs but integers for Oid column

  • 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-06T22:44:48+00:00Added an answer on June 6, 2026 at 10:44 pm

    Try this:

    /*
     -- Setup Script
    SELECT NEWID() OID, 5 Width, 7 Length
        INTO #Space
    
    
    
    SELECT NEWID() OID, 5 Width, 7 Length
        INTO #SpaceTemp
    
    INSERT INTO #SpaceTemp
    SELECT NULL OID, 5 Width, 7 Length
    
    INSERT INTO #SpaceTemp
    SELECT NULL OID, 7 Width, 5 Length
    
    
    INSERT INTO #SpaceTemp
    SELECT NULL OID, 4 Width, 3 Length
    
    INSERT INTO #SpaceTemp
    SELECT NULL OID, 3 Width, 4 Length
    
    UPDATE #SpaceTemp SET OId = NULL;
    */
    UPDATE a
            SET a.OId = COALESCE(b.OId, NEWID())
      FROM #SpaceTemp a LEFT JOIN #Space b
            ON (a.Width = b.Width AND a.Length = b.Length)
            OR (a.Width = b.Length AND a.Length = b.Width)
    
    
    
    
    SELECT * FROM #SpaceTemp
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hoping to get some help here. I have locations on a database that I
I have a small problem that I am hoping to get some help with.
I was hoping I could get some help optimizing the following data retrieval. Here
Hoping to get some help or direction with the following issue I am facing.
I was hoping to get some advice on what to do. I have a
I have a problem that I'm hoping to get some direction in solving -
I am hoping to get some help on this issue. Some users on IE
I'm hoping to get some help with this weird problem. We're running the Jacorb
I struggle with JSON and jQuery so I'm hoping to get some help figuring
Hello all I was hoping to get some help with inported this class to

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.