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

MongoDB Java pull

La documentazione Java è abbastanza chiara, stai solo costruendo oggetti BSON in modo che corrispondano alle rispettive controparti JSON utilizzate nella shell:

    BasicDBObject query = new BasicDBObject("_id", 73);
    BasicDBObject fields = new BasicDBObject("goals", 
        new BasicDBObject( "goal", 4));
    BasicDBObject update = new BasicDBObject("$pull",fields);

    games.update( query, update );