SyntaxFix
Write A Post
Hire A Developer
Questions
Duplicated id for pairs name and city:
id
name
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