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

Mongodb:配列にネストされたjsonオブジェクトをクエリします

    位置演算子の使用

    db.test.find(
        { "array.value": "value2" },
        { "array.$": 1, _id : 0 }
    )
    

    出力

    { "array" : [ { "name" : "test2", "value" : "value2" } ] }
    

    集計の使用

    db.test.aggregate([
        { $unwind : "$array"},
        { $match : {"array.value" : "value2"}},
        { $project : { _id : 0, array : 1}}
    ])
    

    出力

    { "array" : { "name" : "test2", "value" : "value2" } }
    

    Javaドライバーの使用

        MongoClient mongoClient = new MongoClient(new ServerAddress("localhost", 27017));
        DB db = mongoClient.getDB("mydb");
        DBCollection collection = db.getCollection("test");
    
        DBObject unwind = new BasicDBObject("$unwind", "$array");
        DBObject match = new BasicDBObject("$match", new BasicDBObject(
                "array.value", "value2"));
        DBObject project = new BasicDBObject("$project", new BasicDBObject(
                "_id", 0).append("array", 1));
    
        List<DBObject> pipeline = Arrays.asList(unwind, match, project);
        AggregationOutput output = collection.aggregate(pipeline);
    
        Iterable<DBObject> results = output.results();
    
        for (DBObject result : results) {
            System.out.println(result.get("array"));
        }
    

    出力

    { "name" : "test2" , "value" : "value2"}
    


    1. ScrapyとMongoDBを使用したWebスクレイピング

    2. Sidekiqの民主的なキュー

    3. MongoDBデータベースに画像を保存する

    4. PythonRedisからRedisDBをフラッシュするにはどうすればよいですか?