$ne
का उपयोग करें -- $not
मानक ऑपरेटर द्वारा पालन किया जाना चाहिए:
$ne
. के लिए एक उदाहरण , जिसका अर्थ नहीं के बराबर है:
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" }
और अब $not
, जो विधेय में लेता है ($ne
) और इसे अस्वीकार करता है ($not
):
db.test.find({'post': {$not: {$ne : ""}}})
{ "_id" : ObjectId("4f68b19c768972d396fe2267"), "author" : "me", "post" : "" }