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

ottenere il valore massimo in mangusta

Non sono riuscito a far funzionare le altre risposte. Forse sto usando una versione più recente di Mongoose ([email protected] ).

Questo ha funzionato per me:

Table1.findOne()
    .where({field1: 1})
    .sort('-LAST_MOD')
    .exec(function(err, doc)
    {
        var max = doc.LAST_MOD;
        // ...
    }
);