I have a list of 338 strings like the following:
013705
013707
013708
013709
How do I get all of those strings that do not exist in my table/column: tblclients.clientID
?
I've tried the following:
SELECT clientID FROM tblclients WHERE clientID NOT IN (
000100,
000834,
001855,
etc...)
But that only returns values from my table that do not exist in my list of strings. I need the opposite: strings from my list, that do not exist in the table. I'm wondering if this is possible with SQL or if I need to use Excel in some way...?