添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
傻傻的双杠  ·  Python-OpenCV中使用cv2.im ...·  1 年前    · 
英俊的硬币  ·  ScriptManager 类 ...·  1 年前    · 

mongdb非空数组查询

db .idap_zl .insert({ array:[]})

db .idap_zl .insert({ array:[ 1, 2, 3, 4, 5]})

db.idap_zl.find({ array:{$elemMatch:{$ne: null}}})

一、 e l e m M a t c h elemMatch和ne

db.Collection.find({array:{$elemMatch:{$ne:null}}})

二、$where

db.Collection.find({$where:"this.array.length>0"})

三、 n o t not和size

db.Collection.find({array: {$not: {$size: 0}}})

四、'.'路径和$exists

db.Collection.find({{'array.0': {$exists: 1}}})

五、 e x i s t s exists和ne

db.Collection.find({ array: { $exists: true, $ne: [] } })

六、$gt

db.Collection.find({ array: { $gt: [] } })