您的当前位置:首页正文

mongodb如何筛选不等于空的字段

2022-06-15 来源:知库网

mongodb筛选不等于空的字段的方法:

在mongodb数据库中表示非空的方法有(not null)和($ne:null)两种方法

使用“find{{字段:{$ne:null}}}”方法就可以筛选非空的字段了

示例如下:

db.getCollection("xttblog").find({type:{$ne:null}})
db.getCollection("xttblog").find({type:{not null}})

更多Python知识,请关注:!!

显示全文