mongo db中聚合中的数据类型问题

时间:2017-09-07 07:01:28

标签: mongodb aggregation-framework mongodb-php php-mongodb

我已经编写了以下代码来汇总php应用程序中的两个表

    $lookupTwo = array(
        '$lookup'=> array(
            "from" => "studentTbl",
            "localField" => "studentDetailId",
            "foreignField" => "studentId",
            "as" => "recieverDetails"
        )
    );

现在我遇到一个问题,studentDetailId字段存储为字符串,studentId存储为整数。

以上查询将返回空结果。

  • 在这种情况下是否有可能进行聚合?

0 个答案:

没有答案