Bạn không hiển thị các tài liệu trong bộ sưu tập của mình trông như thế nào, nhưng bạn có thể sử dụng aggregate
phương pháp thu thập để thực hiện việc này:
// Group by the first letter of the 'words' field of each doc in the 'test'
// collection while generating a count of the docs in each group.
db.test.aggregate({$group: {_id: {$substr: ['$words', 0, 1]}, count: {$sum: 1}}})