T-SQL: Find Duplicates Without Using JOIN
I'd forgotten about this lil trick.
select eUserName from eAttribute GROUP BY eUserName HAVING COUNT( eUserName) > 1
I'd forgotten about this lil trick.
select eUserName from eAttribute GROUP BY eUserName HAVING COUNT( eUserName) > 1