--Is there more than one student with the same name? If so, who are these students? [7] SELECT firstName, lastName, count(*) as nbrOfStudents FROM Students GROUP BY firstName, lastName HAVING count(*) > 1;