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

mongodb查询不为空怎么写?

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

mongodb中查询不为null并且存在记录的语句如下:

db.test.find({"test":{"$ne":null}});
db.test.find({"test":{"$ne":null, $exists:true}});

mongodb中查询存在且不为null,不为""(空字符串)

List testList = new ArrayList<>();
 
testList .add(null);
 
testList .add("");
 
queryUser.put("test", new BasicDBObject("$nin", testList));

更多mongodb相关文章请关注python自学网

课程教程:mongodb查询不为空怎么写?

上一篇:mongodb和redis的区别有哪些?

下一篇:没有了

站点信息

  • 文章统计篇文章