1SELECT [EmailAddress], [CustomerName] FROM [Customers] WHERE [EmailAddress] IN
2 (SELECT [EmailAddress] FROM [Customers] GROUP BY [EmailAddress] HAVING COUNT(*) > 1)
1Unique: helps to ensure that all the values
2in a column are different
3Distinct: helps to remove all the duplicate
4records when retrieving the records from a table.