码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB中的null和不存在

时间:2014-09-28 12:49:02      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:blog   数据   sp   div   on   c   log   r   bs   

查询集合c中y的值为null或者不存在

>db.c.find( { “y” : null } )

查询集合c中y的值为null,(仅返回y的值为null的数据,不会返回不存在的)

>db.c.find( { “y” : { $type : 10 } } )

还有一种写法如下

>db.c.find({“y”:{“$in”:[null], “$exists”:true}})

查询集合c中y的值不存在(不会返回y的值为null的数据)

>db.c.find( { “y” : { $exists : false } } )

 
 

MongoDB中的null和不存在

标签:blog   数据   sp   div   on   c   log   r   bs   

原文地址:http://www.cnblogs.com/ference/p/3997799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!