Let's say I have an array of values, (A,B,C,D) and a SQL Server table (table1) with a column (field1).
What I want to do is construct a query such that each value selected is not found in table1.field1.
For example, if A and D are found in table1.field1 then the only values that would be selected would be B and C.
What would such a query look like?
Thank you,
Elliott