Description:Write a SQL query to find all duplicate emails in a table named Person.

     找出表中重复的Email。

    

# Write your MySQL query statement below
select Email 
from Person group by Email having count(*)>1;

 

相关文章:

  • 2022-03-06
  • 2021-12-11
  • 2022-02-14
  • 2021-10-01
  • 2021-08-30
  • 2021-06-27
  • 2021-07-09
  • 2021-10-27
猜你喜欢
  • 2021-07-14
  • 2021-12-12
  • 2021-06-16
  • 2022-12-23
  • 2021-08-03
  • 2021-08-17
  • 2021-10-11
相关资源
相似解决方案