SqlState [IMSSP]: Le résultat actif de la requête ne contient aucun champ.

with (SELECT afield INTO #temptable FROM atable 
WHERE anotherfield = 'somevalue') AS temptable;

SELECT afield,anotherfield,onemorefield FROM atable 
where afield NOT IN (SELECT * FROM temptable);
Frightened Ferret