Just trying to wrap my head around the logic/commands needed:
I have a contacts table. Each contact has a client in a many-to-one fashion. I am trying to get any clientIDs where all contacts have a NULL value for email.
Example data:
ContactID EmailAddress ClientID
1 NULL 3
907 NULL 3
2468 NULL 3
2469 [email protected] 4
1077 NULL 4
908 [email protected] 4
2 [email protected] 4
3 [email protected] 5
909 [email protected] 5
Thanks!