Below is the MongoDB query statement that finds all documents where a == 2.
db.scores.find({a: 2});
Below MongoDB query statement that finds all documents where a > 15?
db.scores.find({a: {'$gt': 15}});
Below is the MongoDB query statement that finds all documents where a == 2.
db.scores.find({a: 2});
Below MongoDB query statement that finds all documents where a > 15?
db.scores.find({a: {'$gt': 15}});