技术干货| MongoDB如何查询Null或不存在的字段?
在MongoDB中不同的查询操作符对于null值处理方式不同。本文提供了使用mongoshell中的db.collection.find()方法查询null值的操作案例。案例中使用的inventory集合数据可以通过下面的语句产生。db.inventory.insertMany([{id:1,item:null},{id:2}])等值匹配当使用{item:null}作为查询条件的时候,返回的是item字段值为null的文档或者不包含item字段的文档。db.inventory.find({item:null})该查询返回inventory集合中的所...