sql >> データベース >  >> NoSQL >> MongoDB

MongoDBが等しくない

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


    1. マングースTypeError:ユーザーはコンストラクターではありません

    2. ノード+マングース:最後に挿入されたIDを取得しますか?

    3. 毎日のグループ化内のMongoDB集約

    4. リモートサーバーからのMongodump