sql >> Databasteknik >  >> NoSQL >> MongoDB

Sortera efter arraylängd

Använd aggregeringsramverket med hjälp av $size operatör från MongoDB 2.6 och uppåt:

db.collection.aggregate([
    // Project with an array length
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
        "length": { "$size": "$votes" }
    }},

    // Sort on the "length"
    { "$sort": { "length": -1 } },

    // Project if you really want
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
    }}
])

Enkelt nog.

Om du inte har en version 2.6 tillgänglig kan du fortfarande göra detta med lite mer arbete:

db.collection.aggregate([
    // unwind the array
    { "$unwind": "$votes" },

    // Group back
    { "$group": {
        "_id": "$id",
        "title": { "$first": "$title" },
        "author": { "$first": "$author" },
        "votes": { "$push": "$votes" },
        "length": { "$sum": 1 }
    }},

    // Sort again
    { "$sort": { "length": -1 } },

    // Project if you want to
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
    }}
])

Det är ungefär det.



  1. Lagra ett JSON-schema i mongodb med spring

  2. Hur får man data från MongoDb med mongoose?

  3. Junit/Fongo:Hur man använder Fongo i enhetstestet för att kontrollera NotNull

  4. Redis Pub/Sub med tillförlitlighet