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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T03:11:56+00:00 2026-06-07T03:11:56+00:00

I have a database table, which a program is about to update. I have

  • 0

I have a database table, which a program is about to update. I have taken a snapshot of the table before the program ran and a snapshot afterwards. Here is a sample of the data:

Before update:

JoinReference   User
1               User 1
1               User 2
1               User 3
2               User 4
2               User 5
2               User 6

After update:

JoinReference   User
3               User 1
3               User 2
3               User 3
4               User 4
4               User 5
5               User 6

I am trying to find all the users that are not linked together after the update. For example, user 1; user 2 and user 3 are linked before and after the update (even though they have a different join reference). User 4 and five are still linked after the update. User 6 is not linked after the update. I am trying to return user 6 after the update. I have tried using derived tables but it has not worked.

This is for a very large database. The example I have given uses fields I have made up to explain the problem. The database structure for the example would be like this:

CREATE TABLE JoinedUsers (JoinReference int, User)

  • 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-07T03:11:58+00:00Added an answer on June 7, 2026 at 3:11 am
    select     UnpairedBefore.userid
    from 
               (select    main.*
               from       tableBefore main
               left join  tableBefore ref
               on         main.joinreference = ref.joinreference
               and        main.userid <> ref.userid
               where      ref.userid null) UnpairedBefore
    inner join
               (select    main.*
               from       tableAfter main
               left join  tableAfter ref
               on         main.joinreference = ref.joinreference
               and        main.userid <> ref.userid
               where      ref.userid null) UnpairedAfter
    on         UnpairedBefore.userid = UnpairedAfter.userid
    

    or

    select  [user]
    from    tblBefore
    where   JoinReference in 
        (
        select  JoinReference
        from    tblBefore
        group by    JoinReference
        having  COUNT(*) = 1
        )
    and [user] in 
        (
        select  [user]
        from    tblAfter
        where   JoinReference in 
            (
            select  JoinReference
            from    tblAfter
            group by    JoinReference
            having  COUNT(*) = 1
            )
        )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently we have a table with a bunch of data from a database which
I have one database table which contains 8 columns. One of the columns is
I have a database table which link locations together; a location can be in
I have a database table which is full-text indexed and i use the CONTAINS-function
I have a database table A which stores records, A has a primary key
In an application we are developing, I have access to a database table which
i have a large mysql database table in which one column contains values ranging
I have a database table named 'student' in which there is one column named
We have a Oracle 9i database and OrderDetails table which has a column to
So I have a mySQL database with a 'users' table which includes a username,

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.