MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Mongodb e sub-matriz de classificação


Surpreendentemente, sim, o mongodb pode fazer isso:
// Sort ascending, by minimum percentage value in the docs' offers array.
db.collection.find({}).sort({ 'offers.percentage': 1 });

// Sort descending, by maximum percentage value in the docs' offers array.
db.collection.find({}).sort({ 'offers.percentage': -1 });