Dla SQL Server 2008
SELECT email,
CASE
WHEN EXISTS(SELECT *
FROM Users U
WHERE E.email = U.email) THEN 'Exist'
ELSE 'Not Exist'
END AS [Status]
FROM (VALUES('email1'),
('email2'),
('email3'),
('email4')) E(email)
W poprzednich wersjach możesz zrobić coś podobnego z tabelą pochodną UNION ALL
-ing stałych.
/*The SELECT list is the same as previously*/
FROM (
SELECT 'email1' UNION ALL
SELECT 'email2' UNION ALL
SELECT 'email3' UNION ALL
SELECT 'email4'
) E(email)
Lub jeśli potrzebujesz tylko tych nieistniejących (jak sugeruje tytuł), a nie dokładnego zestawu wyników podanego w pytaniu, możesz po prostu to zrobić
SELECT email
FROM (VALUES('email1'),
('email2'),
('email3'),
('email4')) E(email)
EXCEPT
SELECT email
FROM Users