Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select cast(a.Email as char(20)) as Email,
convert(char(8),a.FirstName,110) as FirstName,
a.LastName,
a.Company,
a.Title,
a.MiddleName,
a.Prefix,
a.Country,
a.Accreditations
from dbo.t_contacts a
join
(select Email
from dbo.t_contacts
group by Email
having count(*) > 1) b
on a.Email = b.Email
order by a.Email