gpt4 book ai didi

sql - 带 WHERE 的 DISTINCT 子句

转载 作者:行者123 更新时间:2023-12-03 09:58:03 26 4
gpt4 key购买 nike

如何在 WHERE 中使用 DISTINCT 子句?例如:

SELECT * FROM table WHERE DISTINCT email; -- email is a column name

我想从具有不同电子邮件地址的表中选择所有列。

最佳答案

如果您的意思是电子邮件唯一的所有列:

SELECT * FROM table WHERE email in
(SELECT email FROM table GROUP BY email HAVING COUNT(email)=1);

关于sql - 带 WHERE 的 DISTINCT 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5610528/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com