Hi, I have about 10,000 numbers to search in a database of about 100,000. I can write a simple statement to search for each number indivually... like this:
Is there a way I can get a report for all of the numbers that are not found? I'm trying to find out which of my 10,000 numbers are not in the database.
Thanks,
Brian
Code:
select sdocumentno
from documentinfo
where sdocumentno = '12345'
or sdocumentno = '12346'
or sdocumentno = '12346'
Is there a way I can get a report for all of the numbers that are not found? I'm trying to find out which of my 10,000 numbers are not in the database.
Thanks,
Brian