182.查找重复的电子邮箱 题目链接:https://leetcode-cn.com/problems/duplicate-emails/ 1. 题目 2. 解题过程 # Write your MySQL query statement below select p.Email as Email from Person p group by p.Email having count(Email)>1;