Postgres在不同的char案例中选择重复的电子邮件

时间:2013-07-09 06:26:50

标签: sql postgresql

我有用户表,在不同的char情况下有重复的电子邮件。例如,在users表中我有2条记录,一条是EXAMPLE@EXAMPLE.COM,第二条是example@example.com

如何使用Postgres找到所有这些重复项?

1 个答案:

答案 0 :(得分:3)

尝试在uppergroup by使用having功能:

select upper(string)
from userstable
group by upper(string)
having count(1) >1