MongoDB数据库实现 is not null 和 is null 查询
程序员文章站
2022-04-28 19:19:53
...
原文地址:https://*.com/questions/4057196/how-do-you-query-this-in-mongo-is-not-null
- 插入三条数据
db.test.insert({"num":1, "check":"check value"});
db.test.insert({"num":2, "check":null});
db.test.insert({"num":3});
- 查询全部内容
db.test.find();
- 查询第一条和第二条数据
db.test.find({"check":{$exists:true}});
- 只查询第一条数据
db.test.find({"check":{$ne:null}});
- 查询第二条和第三条数据
db.test.find({"check":null})
推荐阅读
-
Thinkphp使用mongodb数据库实现多条件查询方法
-
Node.js对MongoDB数据库实现模糊查询的方法
-
Thinkphp使用mongodb数据库实现多条件查询方法
-
sql server查询(SELECT ,where,distinct,like 查询,in,is null,group by 和having,order by,as)
-
MongoDB模糊查询操作案例详解(类关系型数据库的 like 和 not like)
-
Python利用sqlite实现对数据库的增删改和查询等基本操作
-
使用 Mybatis 实现数据库的增删改查、Map和模糊查询
-
数据库MySql python读取插入数据,insert对那些类型加单引号,表单自己参考自己(外键),空值和NULL
-
MongoDB的模糊查询操作(类关系型数据库的 like 和 not like)
-
Thinkphp使用mongodb数据库实现多条件查询方法