Hello, I am fairly new to SQL and have a question that I'd like to pose.
I have a list of IDs an I would like to find which IDs in that list do not exist in a particular table. It is simple to find the ones that exist in the table, but I am not sure how to go the other way.
For example say I am give the list {A,B,C,D,E,F}
The query
"Select ID from SOME_TABLE where ID IN (A,B,C,D,E,F)" returns C,D,F
I'd like to determine if it is possible to write a query that would give me the remaining unmatched IDs (A,B,E)
It is simple when the list only contains a few values, but when the list contains 100 or so IDs the manual way is not fun.
I can not create a table or a temp table to do this.
Any input is appreciated
Thanks
Sean
I have a list of IDs an I would like to find which IDs in that list do not exist in a particular table. It is simple to find the ones that exist in the table, but I am not sure how to go the other way.
For example say I am give the list {A,B,C,D,E,F}
The query
"Select ID from SOME_TABLE where ID IN (A,B,C,D,E,F)" returns C,D,F
I'd like to determine if it is possible to write a query that would give me the remaining unmatched IDs (A,B,E)
It is simple when the list only contains a few values, but when the list contains 100 or so IDs the manual way is not fun.
I can not create a table or a temp table to do this.
Any input is appreciated
Thanks
Sean