MongoDB find and return all with max value
问题 I'm trying to get a list of documents that have the max value. I can specify it if I know the number of documents with max value (like in the solution in this another stackoverflow solution 'mongodb how to get max value from collections'), but I don't know how to do it if I don't know what the number of documents is. For example, using the following documents: {name:"a", age:10} {name:"b", age:11} {name:"d", age:12} {name:"c", age:12} So I know that there are 2 documents with max age of 12.