gpt4 book ai didi

MySQL 按组中的值过滤

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

我需要执行 MySQL 查询

select * from table where id = 1 or id = 2 or id = 3 or id = 4 or id = 5 or id = 6

是否有任何表达式可以减少对值进行分组的sql?,例如

select * from table where id oneof (1,2,3,4,5,6)

我对 and and and and and ...有同样的问题

最佳答案

是的,您需要使用in函数。

select * from table where id in (1,2,3,4,5,6)

http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#function_in

关于MySQL 按组中的值过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29117540/

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