Sử dụng $ne - $not phải được theo sau bởi toán tử tiêu chuẩn:
Ví dụ cho $ne , viết tắt của không bằng:
use test
switched to db test
db.test.insert({author : 'me', post: ""})
db.test.insert({author : 'you', post: "how to query"})
db.test.find({'post': {$ne : ""}})
{ "_id" : ObjectId("4f68b1a7768972d396fe2268"), "author" : "you", "post" : "how to query" }
Và bây giờ $not , nhận trong vị từ ($ne ) và phủ định nó ($not ):
db.test.find({'post': {$not: {$ne : ""}}})
{ "_id" : ObjectId("4f68b19c768972d396fe2267"), "author" : "me", "post" : "" }