find duplicate rows sql server - Google Search

PHOTO EMBED

Tue Jun 01 2021 10:18:19 GMT+0000 (Coordinated Universal Time)

Saved by @nikhil3790 #sql

/* Gets reps */
SELECT fieldA, COUNT(*)
FROM tableA
GROUP BY fieldA
HAVING COUNT(*) > 1

/* Use reps to filter results */
SELECT a.*
FROM tableA a
JOIN (
	SELECT fieldA, COUNT(*) as 'count'
	FROM tableA
	GROUP BY fieldA
	HAVING COUNT(*) > 1
) b
ON a.fieldA = b.fieldA
content_copyCOPY

https://www.google.com/search?q