Dit inderste udvalg bruger ikke noget fra sig selv i sin where-klausul, så det er altid at finde noget til piper. Prøv
select distinct b.profname from committee b
where not exists (
select commname from committee a
where a.profname = 'piper' and not exists (
select commname from committee c
where c.profname=b.profname and c.commname=a.commname
)
);