我想执行以下查询:

db.mycollection.find(HAS IMAGE URL)

正确的语法应该是什么?


当前回答

分享给未来的读者。

这个查询为我们工作(查询从MongoDB compass执行):

{
  "fieldName": {
    "$nin": [
      "",
      null
    ]
  }
}

其他回答

这将返回所有带有“IMAGE URL”键的文档,但它们仍然可能有一个空值。

db.mycollection.find({"IMAGE URL":{$exists:true}});

这将返回所有具有“IMAGE URL”键和非空值的文档。

db.mycollection.find({"IMAGE URL":{$ne:null}});

此外,根据文档,$exists目前不能使用索引,但$ne可以。

编辑:由于对这个答案感兴趣,添加了一些例子

给定这些插入:

db.test.insert({"num":1, "check":"check value"});
db.test.insert({"num":2, "check":null});
db.test.insert({"num":3});

这将返回所有三个文档:

db.test.find();

这将只返回第一个和第二个文档:

db.test.find({"check":{$exists:true}});

这将只返回第一个文档:

db.test.find({"check":{$ne:null}});

这将只返回第二个和第三个文档:

db.test.find({"check":null})

检查mongo compass中列是否存在的最简单方法是:

{ 'column_name': { $exists: true } }
db.<collectionName>.find({"IMAGE URL":{"$exists":"true"}, "IMAGE URL": {$ne: null}})

分享给未来的读者。

这个查询为我们工作(查询从MongoDB compass执行):

{
  "fieldName": {
    "$nin": [
      "",
      null
    ]
  }
}

查询将是

db.mycollection.find({"IMAGE URL":{"$exists":"true"}})

它将返回所有具有“IMAGE URL”作为密钥的文档...........