gpt4 book ai didi

mysql - 在 Mysql IN 运算符上使用 DISTINCT

转载 作者:行者123 更新时间:2023-11-29 22:09:07 26 4
gpt4 key购买 nike

我想知道如何做这样的事情:

select * from mytable
where id in distinct('11','12','11','13');

我以前从未见过有人在 in 列表上使用 distinct ,所以想知道 in 列表默认情况下是否已经是不同的?

最佳答案

不需要indistinct()。如果值在列表中,in 运算符将生成 true,否则生成 false。 unique('11','12','11','13')中的'11'和distinct('11','12'中的'11'没有区别','13'),两者的结果都是true

关于mysql - 在 Mysql IN 运算符上使用 DISTINCT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31864349/

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