Leetcode182 Duplicate Emails Posted on 2020-02-21 Edited on 2020-02-22 In 数据库 Valine: Problem: Solution:12345678SELECT EmailFROM PersonGROUP BY EmailHAVING COUNT( * ) >= 2;