My current document structure looks like this:
{'_id': ObjectId('5rdfgd63sdg'),
 'car': '1.16958',
 'bike': '1.16968',
 'van': '1.16951',
 'sedan': '1.16954',
 'volume': 25}
I have 500 documents like this in a single collection. I would like to query all values from 'bike' for example.
The SQL equivalent of what I'd like is SELECT bike from db.name
 
    