gpt4 book ai didi

php - Doctrine2 Querybuilder 按位和

转载 作者:可可西里 更新时间:2023-11-01 13:33:54 25 4
gpt4 key购买 nike

我想在我的 Doctrine2/Symfony2 QueryBuilder 中使用按位比较。我试过了

->andWhere('n.sharingenabled & 1')

->andWhere('BIT_AND(n.sharingenabled, 1)')

但是他们都抛出如下错误

QueryException: [Syntax Error] line 0, col 327: Error: Expected =, <, <=, <>, >, >=, !=, got '&'

最佳答案

您需要将 BIT_AND 结果与某些东西进行比较...例如:

->andWhere('BIT_AND(n.sharingenabled, 1) > 0')

关于php - Doctrine2 Querybuilder 按位和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15854363/

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