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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:07:06+00:00 2026-05-24T13:07:06+00:00

I asked this question last week on SO- SQL Exclusion Query It looks like

  • 0

I asked this question last week on SO-

SQL Exclusion Query

It looks like my criteria has changed so I will reask using my current info:

Is it possible in a single SQL statement to do the following:

Use a subset of telephone numbers in an IN statement, for example IN(8001231000,8001231001,8001231002). Then query my database that has phone numbers in it, and return which phone numbers in the original subset of my IN statement are NOT in my database? My db is Oracle 10g.

Basically instead of bringing back which phone numbers ARE IN(8001231000,8001231001,8001231002), I want to know which phone numbers IN(8001231000,8001231001,8001231002) are NOT in my database.

I’m thinking I need to create a temporary table kind of like the answer from my previous question:

SELECT level - 1 + 8001231000
   FROM dual
CONNECT BY level <= 8001239999-8001231000+1

But instead of doing a range of numbers, I need to perform a query that can be built using an IN statement. The user will be inputting their telephone number list directly into the IN statement instead of selecting a static range of numbers.

How would I build this in a single statement so I could join and exclude my database result from this list so it would only return the telephone numbers NOT found in my database? Can I do a LEVEL CONNECT BY on a list instead of a range?

  • 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-05-24T13:07:07+00:00Added an answer on May 24, 2026 at 1:07 pm

    This will generate a table (replacing &x with your IN statement) that can be queried against.

    SELECT *
      FROM (SELECT regexp_substr(&x, '[^,]+', 1, LEVEL) phone_number
               FROM dual
             CONNECT BY LEVEL <= length(&x) - length(REPLACE(&x, ',', '')) + 1)
     WHERE phone_number NOT IN (SELECT phone_table.phone_number 
                                  FROM phone_table)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is similar to this question I asked last week. My dataGrid is populated
This is related to another question I asked last week, but the current issue
So based on this question ( here ), of which I asked last week,
I guess this is a continuation of the last question I asked: bulk insert
I asked a similar question last week but did not get an answer that
I know this question has been asked alot of times, however most of them
Looking at the related questions, I don't think this specific question has been asked,
This question derives from the reason I asked my last question on foreach loops.
I know this question has been asked/answered but I can't find it for the
I know that this question has been asked loads of times, but I have

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.