182. Duplicate Emails
https://leetcode.com/problems/duplicate-emails/description/
Write a SQL query to find all duplicate emails in a table named Person.
1 | +----+---------+ |
For example, your query should return the following for the above table:
1 | +---------+ |
Note: All emails are in lowercase.
Solution:
1 | Select Email |