SELECT firstName, lastName, count(*) as nbrOfStudents FROM Students GROUP BY firstName, lastName HAVING count(*) > 1;