How many trips in the sample_training.trips collection started at stations that are to the west of the -74 longitude coordinate?
db.trips.find({ "start station location.coordinates": { "$lt": -74 }}).count()
How many inspections from the sample_training.inspections collection were conducted in the city of NEW YORK?
db.inspections.find({ "address.city": "NEW YORK" }).count()