select *
from tmp_p p1 where name not in ( select name from tmp_p where accID = 1 )
and name not in ( select name from tmp_p where accID in (2,10) )
order by p1.name
this kind of works but I don't want to use the name field. instead, i want to use the personID field.
ColdFusion Ninja for...