2

我有一个Document带有嵌套Properties(Name, Value) 集合的对象。

现在我想找到"Properties.Name" = "SomePropertyName"不存在的文件。

我试过这个,但它只有在属性存在但null有价值的情况下才有效:

{"Properties":{"$elemMatch":{"Name":"SomePropertyName", "Value.0":{"$exists":false}}}}

我尝试了一些狂野$ne$exists组合,这些组合应该可以在我的关系数据库查询体验中起作用,但它没有帮助。

文档示例:

[
  {
    "_id": "Document1",
    "Properties": [
      {
        "Name": "SomeName",
        "Value": [
          "value1",
          "value2"
        ]
      },
      {
        "Name": "Property2",
        "Value": [
          "value3"
        ]
      }
    ]
  },
  {
    "_id": "Document2",
    "Properties": [
      {
        "Name": "Property2",
        "Value": [
          "value3"
        ]
      },
      {
        "Name": "Property3",
        "Value": null
      }
    ]
  },
  {
    "_id": "Document3",
    "Properties": [
      {
        "Name": "SomeName",
        "Value": null
      },
      {
        "Name": "Property2",
        "Value": [
          "value3"
        ]
      },
      {
        "Name": "Property3",
        "Value": null
      }
    ]
  }
]

查询应该返回Document2Document3(查询“SomeName”属性)

如何查询属性不存在或有null值的文档?

4

2 回答 2

5

我相信这是您想要的查询:

db.prop.find({$or: [
... {"Properties.Name":{$ne:"SomeName"}},
... {"Properties":{$elemMatch:{"Name":"SomeName","Value":null}}}
... ] })

这表示您想要所有未设置“SomeName”的文档(即所有存在的文档都不等于“SomeName”)以及名称为“SomeName”且同时“Value”为空的所有文档。

我在您的示例上进行了尝试,并获得了文档 2 和 3。

于 2012-06-10T05:25:04.070 回答
2

这应该可以解决问题

'Properties.Name' : { $exists : true, $ne: null }
于 2021-02-16T09:42:42.653 回答