LeetCode182. 중복된 이메일 찾기

2311 단어 데이터베이스
문제 설명: SQL 쿼리를 작성하여 Person 테이블의 모든 중복된 전자 메일박스를 찾습니다.예:
+----+---------+
| Id | Email   |
+----+---------+
| 1  | [email protected] |
| 2  | [email protected] |
| 3  | [email protected] |
+----+---------+

위의 입력에 따라 쿼리는 다음 결과를 반환해야 합니다.
+---------+
| Email   |
+---------+
| [email protected] |
+---------+

설명: 모든 전자 메일박스는 소문자입니다.사용된 테이블과 데이터
Create table If Not Exists Person (Id int,Email varchar(255));
Truncate table Person;
insert into Person (Id, Email) values ('1','[email protected]');
insert into Person (Id, Email) values ('2','[email protected]');
insert into Person (Id, Email) values ('3','[email protected]');

해결 방법:
# Write your MySQL query statement below
select Email from person group by Email having count(Email)>1;

좋은 웹페이지 즐겨찾기