有没有办法指定“文档不包含字段”的条件?
例如,我只想找到这两个中的第一个,因为它没有“价格”字段。
{"fruit":"apple", "color":"red"} {"fruit":"banana", "color":"yellow", "price":"2.00"}
试试$exists运营商:
$exists
db.mycollection.find({ "price" : { "$exists" : false } })
并查看其文档。