MongoDB判断字段的值不为空的代码

2022-05-03 00:00:00 字段 判断 为空

MongoDB的操作中有时候需要判断字段的值是否为空,MongoDB通过$ne判断是否为null或者字符串的空值即可

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

相关文章