MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB non uguale a

Usa $ne -- $not dovrebbe essere seguito dall'operatore standard:

Un esempio per $ne , che sta per non uguale:

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" }

E ora $not , che accetta predicato ($ne ) e lo nega ($not ):

db.test.find({'post': {$not: {$ne : ""}}})
{ "_id" : ObjectId("4f68b19c768972d396fe2267"), "author" : "me", "post" : "" }