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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:27:43+00:00 2026-06-05T09:27:43+00:00

Lets say I have table A , with an id column, and table B

  • 0

Lets say I have table A, with an id column, and table B with an A_id column. A_id is a foreign key of id. Now, if I want to get all id’s from A of which B has a foreign key link, I can do

SELECT id FROM A JOIN B ON id = A_id

However, how can I select all id’s from A where B does not link to? (without selecting all id’s and subtracting the above subset from that)

  • 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-05T09:27:45+00:00Added an answer on June 5, 2026 at 9:27 am
    SELECT  id
    FROM    a
    WHERE   id NOT IN
            (
            SELECT  a_id
            FROM    b
            )
    

    This will use an anti-join: for each record from a, it will search b for the record’s id (using an index on b.a_id) and if none found, return the record.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a set of ids in a table (column id), lets say from
Lets say I have a table in MySQL called articles, that has a column
I'm trying to get all duplicate rows from a DB. Lets say I have
Lets say I have a table that has a bit column named Active .
Lets say I have a File table with the column, File_ID. How can I
Which is your preference? Let's say we have a generic Product table that has
Let's say I have a person table, and I want it to classify all
Ok, so lets say I have a table comprising three columns. The first column
I currently have a table called User which has a id column which is
Lets say I have a column of user ID's storing past login successes. Now,

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.