$isnull语法描述示例$isnull语法{ <字段名>: { $isnull: <0|1> } }描述选择集合中指定的“<字段名>”是否为空,或不存在。 值作用0返回字段存在且不为null的记录。1返回字段不存在或为null的记录。 示例 查询集合 sample.employee 中“age”字段不为空且存在的记录: > db.sample.employee.find( { age: { $isnull: 0 } } )