CSCI-4830-002-2014 / hackathon-yelp

0 stars 6 forks source link

What is the top-rated business for a price range of "2"? #7

Open alne4294 opened 9 years ago

peymanmortazavi commented 9 years ago

db.business.find( { stars: {$gt: 4} , "attributes.Price Range":2} )

indiesquidge commented 9 years ago

testing

db.business.find({'city': 'Las Vegas', 'attributes': {'Price Range': 2}} , {}).sort({'stars':-1}).limit(1).pretty()

This shows the number one rated place (highest rating is 5 stars with the highest number of reviews) with a price range of "2".