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

Come ordinare i risultati in base alla lunghezza della stringa su MongoDB

MongoDB 3.4 introduce $strLenCP operatore di aggregazione che finalmente lo supporta. Un esempio:

db.collection.aggregate(
    [
        {$project: {
            "field": 1,
            "field_length": { $strLenCP: "$field" }
        }},
        {$sort: {"field_length": -1}},
        {$project: {"field_length": 0}}
    ]
)