您现在的位置是:课程教程文章

mongodb判断是否为空?

2023-12-18 18:48课程教程文章 人已围观

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相关文章请关注python自学网。

课程教程:mongodb判断是否为空?

上一篇:mongodb能完成哪些功能特性?

下一篇:没有了

站点信息

  • 文章统计篇文章