gpt4 book ai didi

mongodb - 是否可以通过 $lookup 将字符串与 ObjectId 进行比较

转载 作者:可可西里 更新时间:2023-11-01 09:14:02 27 4
gpt4 key购买 nike

table1 有一个字段字符串“value”,table2 有一个字段“value”为ObjectId,是否可以进行查询像这样或者怎么写

table1.aggregate([
{
$lookup: {
from: "table2",
localField: "value",
foreignField: "_id",
as: "test"
}
}
])

最佳答案

据我所知,在 MongoDB 数据类型中使用 $lookup 运算符加入集合应该是相同的。如果类型不匹配,则 $lookup 将不起作用。所以要加入你应该使用那些相同类型的字段,因为它检查相等性

The $lookup stage does an equality match between a field from the input documents with a field from the documents of the “joined” collection

  • 如果 localField 类型为 object 那么 foreignField 应该是 object

  • 如果 localField 类型 string 那么 foreignField 应该是 string

  • 如果 localField 类型 number 那么 foreignField 应该是 number

$lookup Documentation

关于mongodb - 是否可以通过 $lookup 将字符串与 ObjectId 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41393899/

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