Ok, I check about 10 pages of threads to make sure this wasn't a duplicate post, sorry if it is.
I have two columns of phone numbers. 1 is the state do not call list. The other is my dialing list. I want to create a table of numbers in my dialing list that are NOT in the DO NOT CALL list. I'm having trouble just figuring the logic out, let alone the query- here's my thought.
Table Name: Numbers, NoCall is the do not call list, CallList is my set of numbers. The data currently resides in 2 different tables: DNC (do not call) and CL (call list).
Select CL.CallList
from CL inner join DNC on CL.CallList
So where do I go from here? Any help is greatly appreciated.
Robert
I have two columns of phone numbers. 1 is the state do not call list. The other is my dialing list. I want to create a table of numbers in my dialing list that are NOT in the DO NOT CALL list. I'm having trouble just figuring the logic out, let alone the query- here's my thought.
Table Name: Numbers, NoCall is the do not call list, CallList is my set of numbers. The data currently resides in 2 different tables: DNC (do not call) and CL (call list).
Select CL.CallList
from CL inner join DNC on CL.CallList
So where do I go from here? Any help is greatly appreciated.
Robert