MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Mongodb et sous-tableau de tri

Étonnamment, oui, mongodb peut le faire :

// 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 });