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@email.com     4
1077        NULL                4
908         email@email.com     4
2           email@email.com     4
3           email@email.com     5
909         email@email.com     5
Thanks!
 
     
     
    