gpt4 book ai didi

sphinx - 如何使用 OR 条件编写 sphinx 查询

转载 作者:行者123 更新时间:2023-12-04 23:25:26 24 4
gpt4 key购买 nike

我需要在我的项目中使用 OR 条件创建一个 sphinx 查询。但是给出一个像

这样的 OR 条件
select cost FROM transactionsChart WHERE cost=25 OR cost=5;

不工作。它返回一个错误,如

ERROR 1064 (42000): sphinxql: syntax error, unexpected OR, expecting $end near 'OR cost=5'

谁能帮帮我....

提前致谢

最佳答案

Sphinx 不支持 WHERE 子句中的 OR AND

对于您的具体示例,可以使用 IN 语法,

sphinxql> SELECT cost FROM transactionsChart WHERE cost IN (5,25);

或更通用的解决方案是使用虚拟属性

sphinxql> SELECT cost, IF(cost=25 OR cost=5,1,0) AS filter 
FROM transactionsChart WHERE filter = 1;

关于sphinx - 如何使用 OR 条件编写 sphinx 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31199579/

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