SELECT statement to specify the email column to be returned.FROM clause to specify the Person table as the source of the data.GROUP BY clause to aggregate the results by the email column.HAVING clause to filter the groups by the count of emails, keeping only those where the count is greater than 1.erDiagram
Person {
int id PK
varchar email
}