Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come faccio a trovare duplicati su più colonne?

id duplicato per le coppie name e city :

select s.id, t.* 
from [stuff] s
join (
    select name, city, count(*) as qty
    from [stuff]
    group by name, city
    having count(*) > 1
) t on s.name = t.name and s.city = t.city