This provides the list of duplicates:
SELECT firstname, lastname, COUNT(*)
FROM person
GROUP BY firstname, lastname
HAVING COUNT(*) > 1;
If you want to see the counts for every row remove the having clause:
SELECT firstname, lastname, COUNT(*)
FROM person
GROUP BY firstname, lastname;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…