Pour obtenir les données que vous souhaitez, je vous recommande d'utiliser l'agrégation avec un having
clause :
Select SP.SPRIDEN_ID, SP.SPRIDEN_LAST_NAME, SP.SPRIDEN_FIRST_NAME, SR.SHRDGMR_SEQ_NO,
SR.SHRDGMR_PROGRAM
from spriden SP join
SHRDGMR SR
on SP.SPRIDEN_PIDM = SR.SHRDGMR_PIDM join
SPRHOLD SH
on sp.spriden_pidm = sh.sprhold_pidm
where SR.SHRDGMR_DEGS_CODE = 'PN' and
SR.SHRDGMR_TERM_CODE_GRAD >= '201489' and
sp.spriden_change_ind is NULL
group by SP.SPRIDEN_ID, SP.SPRIDEN_LAST_NAME, SP.SPRIDEN_FIRST_NAME, SR.SHRDGMR_SEQ_NO,
SR.SHRDGMR_PROGRAM
having sum(case when sh.sprhold_hldd_code = 'RH' then 1 else 0 end) = 0;
Vous avez deux problèmes avec votre approche. La première est que la sous-requête renvoie true ou false et affecte toutes les lignes de la requête d'origine. Vous voulez vraiment une sous-requête corrélée. Mais, même si vous avez bien compris, vous renverriez des lignes en double pour Mary. Cela résout ces deux problèmes.