sql >> Database >  >> NoSQL >> MongoDB

Spring Data Mongo - Voer onderscheidend uit, maar wil geen ingesloten documenten in resultaten halen

De aggregatie krijgt de duidelijke departments.deptCd waarden (plus andere details):

db.collection.aggregate( [
{
    $group: { _id: "$departments.deptCd", 
             deptName: { $first: "$departments.deptName" },
             status: { $first: "$departments.status" }
    }
},
{
    $project: { deptCd: "$_id", _id: 0, deptName: 1, status: 1 }
}
] )

De uitvoer:

{ "deptName" : "Tax Handling Dept", "status" : "A", "deptCd" : "Tax" }

[BEWERK TOEVOEGEN]

Code met Spring Data MongoDB v2.2.7:

MongoOperations mongoOps = new MongoTemplate(MongoClients.create(), "testdb");
Aggregation agg = Aggregation.newAggregation(
    Aggregation.group("departments.deptCd")
        .first("departments.deptName").as("deptName")
        .first("departments.status").as("status"),
    Aggregation.project("deptName", "status")
        .and("_id").as("deptCd")
        .andExclude("_id")
);
AggregationResults<Document> results = mongoOps.aggregate(agg, "collection", Document.class);
results.forEach(System.out::println);



  1. mongo docker-afbeelding voert script niet uit na gemaakt

  2. Mongo werkt alle records bij met een veld dat nul is

  3. Wat is een goede MongoDB-documentstructuur voor de meest efficiënte bevraging van gebruikersvolgers/volgers?

  4. Best practices om asynchroon gedupliceerde gegevens in mongodb bij te werken