gpt4 book ai didi

MySQL OR 语句 :The same column or multiple columns?

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

有时 MySQL 不想在带有“or”语句的查询中使用索引。我想知道什么更好 - 在同一列上使用“或”语句或者创建多个列更好。我希望你能明白我的意思。以下是示例。

select from table where column1='1' or column1='2' or column1='3';

select from table where column1='1' or column2='1' ir column3='1';

谢谢

最佳答案

您可以使用 IN 子句,例如 select from table where column1 in ('1','2','3')

关于MySQL OR 语句 :The same column or multiple columns?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14475023/

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