MongoDB查询空值

栏目: 数据库 · 发布时间: 6年前

内容简介:http://stackoverflow.com/questions/9312067/mongodb-queries-with-null-value本站文章除注明转载外,均为本站原创或编译转载请明显位置注明出处:MongoDB查询空值

我的收藏(MongoDB v 2.0.2)有以下记录:

db.organization.find({})
{ "_id" : 1001, "path" : [ ], "parent" : null }
{ "_id" : 1002, "path" : [ 1001 ], "parent" : NumberLong(1001) }

组织有索引:

db.organization.ensureIndex({"path":1});
db.organization.ensureIndex({"parent":1},{sparse:false});

(注意我放了awarnes sparse:false – 授予null被索引)

但是,执行:

db.organization.find({"parent":null})

返回空集.哪里不对?先谢谢你

我遇到过同样的问题.阅读以下文件后

> querying and nulls

> BSON specification

我尝试查询不同的BSON元素类型,并发现我的null被表示为BSON元素类型6(未定义,不推荐使用),而不是预期的BSON元素类型10(null).

db.collection.find({ field: { "$type" : 6} };

http://stackoverflow.com/questions/9312067/mongodb-queries-with-null-value

本站文章除注明转载外,均为本站原创或编译

转载请明显位置注明出处:MongoDB查询空值


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Twitter Power

Twitter Power

Joel Comm / Wiley / 2009-02-17 / USD 24.95

"Arguably, one of the best tomes...Twitter Power is jam-packed with clever ways to start and dominate a marketplace." (Brandopia.typepad.com, March 23rd 2009) “For months I......一起来看看 《Twitter Power》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具