Ai
1 Star 0 Fork 0

逸扬/leetcode-hub-mysql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lc-0182.test 624 Bytes
一键复制 编辑 原始数据 按行查看 历史
逸扬 提交于 2022-04-10 21:46 +08:00 . 1173-1193-1211-1251-1445-1571-1633-1699 (8)
# 182. 查找重复的电子邮箱
# https://leetcode-cn.com/problems/duplicate-emails/
# SQL架构
Create table If Not Exists Person (id int, email varchar(255));
Truncate table Person;
insert into Person (id, email) values ('1', 'a@b.com');
insert into Person (id, email) values ('2', 'c@d.com');
insert into Person (id, email) values ('3', 'a@b.com');
# Write your MySQL query statement below
select
email as Email
from
(
select
email,
count(*) as num
from
Person
group by
email
) tmp
where
num > 1;
# clean-up
drop table Person;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gdut_yy/leetcode-hub-mysql.git
git@gitee.com:gdut_yy/leetcode-hub-mysql.git
gdut_yy
leetcode-hub-mysql
leetcode-hub-mysql
master

搜索帮助