相关文章推荐
安静的领带  ·  shell 和 command模块 · ...·  5 月前    · 
绅士的蚂蚁  ·  Qt ...·  9 月前    · 
鼻子大的酱牛肉  ·  Java Socket ...·  1 年前    · 
大鼻子的鸵鸟  ·  EKS ...·  1 年前    · 
风度翩翩的豆腐  ·  “未找到 Oracle ...·  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: [] } })