gpt4 book ai didi

mysql忽略任何不同的值

转载 作者:IT王子 更新时间:2023-10-29 00:55:55 24 4
gpt4 key购买 nike

我正在尝试运行一个不会显示不同/重复值的 sql 查询。

例如,如果使用不同的选项,它将只显示一个唯一的结果,但我想跳过所有检测到的不同值,即不显示不同的值

这可能吗?

    select col1  d from tb_col  where col1 = '123';

col1
------
123
123


(2 rows)


select distinct col1 d from tb_col where col1 = '123';

col1
------
123
(1 row)

最佳答案

SELECT col1 
FROM tb_col
GROUP BY col1
HAVING count(*) = 1

关于mysql忽略任何不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6545405/

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