Leetcode PHP題解--D80 182. Duplicate Emails

D80 182. Duplicate Emails

題目連接

182. Duplicate Emailssql

題目分析

寫出 查找表中重複郵箱地址的SQL語句。函數

思路

用GROUP BY把結果聚合,並用count函數計算出現次數。用having篩選出現次數大於1的結果便可。spa

最終代碼

# Write your MySQL query statement below
SELECT Email FROM Person group by Email having count(id)>1;
複製代碼

若以爲本文章對你有用,歡迎用愛發電資助。.net

相關文章
相關標籤/搜索