vous avez une valeur NULL dans le tableau
essayez ceci
SELECT id, name
FROM vw_x
WHERE id NOT IN (select pid from table_x where pid is not null)
GROUP BY id, name
Having max(c_date) > GETDATE()
ou ceci
SELECT id, name
FROM vw_x
WHERE NOT EXISTS (select 1 from table_x where pid = vw_x.id )
GROUP BY id, name
Having max(c_date) > GETDATE()
Voir aussi Sélectionner toutes les lignes d'une table qui n'existent pas dans une autre table