Home >Web Front-end >JS Tutorial >How to Sort Arrays within Embedded Documents in MongoDB?
When working with MongoDB, it is often necessary to sort arrays contained within embedded documents. This can be a tricky task, but fortunately there are several methods available.
This question revolves around sorting the "scores" array within the student records in descending order of score. The proposed solution relies on using the mongo shell and the Aggregation Framework, a new feature introduced in MongoDB 2.2.
The aggregation query provided in the answer employs several stages:
The result is a set of documents with the _id, name, and highest homework score for each student. It is important to note that the Aggregation Framework allows for more complex transformations and filtering, making it a powerful tool for working with embedded arrays in MongoDB.
The above is the detailed content of How to Sort Arrays within Embedded Documents in MongoDB?. For more information, please follow other related articles on the PHP Chinese website!