sql >> Database >  >> NoSQL >> MongoDB

Sorteren op arraylengte

Gebruik het aggregatieraamwerk met hulp van de $size operator vanaf MongoDB 2.6 en hoger:

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,
    }}
])

Eenvoudig genoeg.

Als je geen versie 2.6 beschikbaar hebt, kun je dit nog steeds doen met wat meer werk:

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,
    }}
])

Dat is het zo'n beetje.



  1. Hoe efficiënt onderscheidend presteren met meerdere sleutels?

  2. MongoDB $add

  3. Hoe verklaar je een aparte query in MongoDB?

  4. Object #<MongoClient> heeft geen methode 'open'