0

我正在查询包含用户创建的记录的索引。由于我的应用程序可以有多种类型的用户,因此该表具有 CreatedByType 和 CreatedById。

我想排除某个特定用户创建的结果。

// Exclude $userId from the results
$this->Client->SetFilter('CreatedById', $userId, true);

但是,这显然会排除所有 id 为 的用户类型的结果$userId。同样地:

// Exclude $userId from the results
$this->Client->SetFilter('CreatedByType', $userType, true);

将排除所有类型用户的结果$userType

如何将两个属性组合成一个约束并对它们进行AND查询?

谢谢

4

1 回答 1

1

可以计算一个虚拟组合属性,并对其进行过滤。

$this->Client->setSelect("*, IF(CreatedById=$userId,1,0)+IF(CreatedByType=$userType,1,0) as myfilter");
$this->Client->setFilterRange('myfilter',0,1);

(0 表示不匹配,1 表示一个匹配,2 表示两个都匹配。所以 setfilterrange 排除了两者都匹配的文档!)

于 2012-12-18T18:17:19.410 回答