mongodb怎么进行不为空的查询?

python中查询集合中一个值不为空的方法:

可以使用下面的方法查询集合 xttblog 中 type的值不为空:

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

查询为空可以使用下面的方法:

db.getCollection('xttblog').find({type:{$in:[null]}})

更多mongodb相关文章请关注云海天教程网。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » mongodb怎么进行不为空的查询?