我已经编写了以下代码来汇总php应用程序中的两个表
$lookupTwo = array(
'$lookup'=> array(
"from" => "studentTbl",
"localField" => "studentDetailId",
"foreignField" => "studentId",
"as" => "recieverDetails"
)
);
现在我遇到一个问题,studentDetailId
字段存储为字符串,studentId
存储为整数。
以上查询将返回空结果。