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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:47:00+00:00 2026-06-11T07:47:00+00:00

Ok I have a table people and I have and Id column with thousands

  • 0

Ok I have a table people and I have and Id column with thousands of record… I have another list of comma seperated Ids like this

1, 2, 457, 558, 998

I want to check this people table to see which of the 5 records is not present…

I tried

select id from people where id not in (1, 2, 457, 558, 998)

but this returns all the other thousand records and not just the records not found in these 5

any ideas what i am missing

  • 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-11T07:47:01+00:00Added an answer on June 11, 2026 at 7:47 am
    select a.id
    from (
        select 1 as id
        union all
        select 2
        union all
        select 457
        union all
        select 558
        union all
        select 998
    ) a 
    left outer join people p on a.id = p.id
    where p.id is null
    

    If the values you want to check against are in a table, you can do this:

    select c.id
    from MyCheckValues c
    left outer join people p on c.id = p.id
    where p.id is null
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table with around 115k rows. Something like this: Table: People Column:
I have a table that shows the relationships between people a bit like this.
Say I have a table with 3 columns and thousands of records like this:
I have a table like this. The second column uses a JTextField renderer and
The best way of describing this is I have a table of people with
I have a table in my DB with a list of people. I need
We have a table value function that returns a list of people you may
In my MySQL table Winners , I have a list of people who have
I have a table which implements a tree using hierarchyid column Sample data: People
for example, I have a table 'post' and column 'views'. When people view the

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.