首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

mongodb判断是否为空?

2024-08-01 来源:化拓教育网

mongodb判断是否为空的方法:

方法一:{"field1.0":{$exists: true}} (推荐)

db.testcollection.find({"field1.0":{$exists: true}})

方法二:$elemMatch:{$ne:null}

db.testcollection.find({"field1":{$elemMatch:{$ne:null}}})

方法三:$where:"this.field1.length>0"

db.testcollection.find({$where:"this.field1.length>0"})

方法四:{"field1":{$gt: []}}

db.testcollection.find({"field1":{$gt: []}})

更多mongodb相关文章请关注。

显示全文