How to get distinct name and count in MongoDB using PyMongo
问题 I have the below collection as shown below. All I want is the distinct "Name" and the count. For example Betty appears 2 times, so the output I want is Betty:2, Vic:1, Veronica:2. I am able to get the distinct Name by issuing the command " db.Car.find().distinct('Name') " but not sure how to get the count. { "Name": "Betty", "Car": "Jeep", } { "Name": "Betty", "Car": "Van", } { "Name": "Vic", "Car": "Ferrari", } { "Name": "Veronica", "Car": "Bus", } { "Name": "Veronica", "Car": "Van", } 回答1: