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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:03:57+00:00 2026-05-24T00:03:57+00:00

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

  • 0

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

Use a subset of telephone numbers in a prompt, for example 8001231000-8001239999. Then query my database that has phone numbers in it, and return which phone numbers in the original subset are NOT in my database? My db is Oracle 10g.

Basically instead of bringing back which phone numbers ARE between 8001231000-8001239999, I want to know which phone numbers between 8001231000-8001239999 are NOT in my database.

  • 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-24T00:03:58+00:00Added an answer on May 24, 2026 at 12:03 am

    Assuming that the phone number is a NUMBER, you can generate the list of all phone numbers in a particular range

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

    You can then join this list of all the phone numbers in the range to your actual table of phone numbers. Something like

    WITH all_numbers AS (
      SELECT level - 1 + 8001231000 phone_number
        FROM dual
     CONNECT BY level <= 8001239999-8001231000+1
    )
    SELECT *
      FROM all_numbers a
     WHERE NOT EXISTS(
        SELECT 1
          FROM phone_numbers p
         WHERE a.phone_number = p.phone_number)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to use single XML file for Ruby on Rails as an
Is it possible to load child entities in a single query without using DataLoadOptions?
i have the following access sql statement: SELECT * FROM (SELECT [Occurrence Number], [Occurrence
Possible Duplicate: Need help with a SQL query that combines adjacent rows into a
It is not possible to check out a single file. The finest level of
Is it possible to copy a single file to multiple directories using the cp
Is it possible to share a single 'god' instance among everyone that links to
Is that possible to have a single PHP SOAP server which will handle requests
Is it possible to create a single .svc file (WCF Service) that I can
Is it possible to delete a single message from a MSMQ message queue ?

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.