My db is like the followings:
created_on address count
2017-4-17T00:00:00 A 2
2017-4-17T01:00:00 A 3
2017-4-15T00:00:00 B 1
I would like to remove the duplicated entry in same day, say, "2017-4-17T00:00:00 A 2", how do I do that?
Language: mongodb shell or Python(pymongo)