зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 13:16:07 +02:00
5 строки
195 B
Plaintext
5 строки
195 B
Plaintext
https://stackoverflow.com/questions/8149210/how-do-i-find-duplicates-across-multiple-columns
|
|
SELECT name, city, count(*) as qty
|
|
FROM stuff
|
|
GROUP BY name, city HAVING count(*)> 1
|