Posted by: Lee_St January 10, 2019
How to find unique values without using distinct function in SQL Server ?
Login in to Rate this Post:     0       ?        
You could use Group by or Union, something like below

Select FirstName, LastName, count(*) as Count
from Name
Group by FirstName, LastName
Having Count(*) = 1
Read Full Discussion Thread for this article