gpt4 book ai didi

mongodb - 蒙哥 : query by key one level deep

转载 作者:IT老高 更新时间:2023-10-28 13:06:04 25 4
gpt4 key购买 nike

是否可以在 Mongo 查询中使用“exists”之类的内容来根据 ID 返回此记录?

类似于 select where 'ids' contains key '123456'

  {
"department": "Digging",
"ids": {
"123456": {
"color": "blue"
},
"123457": {
"color": "red"
}
}
}

最佳答案

当您搜索具有给定名称的字段时,$exists 是您需要的运算符(请参阅 Advanced Queries )。

例如类似:

db.YourCollection.find({ "ids.123456" : {$exists: true}});

关于mongodb - 蒙哥 : query by key one level deep,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9776151/

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