There was an error while loading. Please reload this page.
> mongodb master ✗ mongo -u admin -p admin --authenticationDatabase admin > use project
> db.stackoverflow.find({})
> db.stackoverflow.find({Country: "Greece"}) or case sensitive > db.stackoverflow.find( {Country: /^GREECE$/i})
> db.stackoverflow.find( {Country: {$in: ["Greece", "Thailand"]}})
> db.stackoverflow.find({Country: "Greece", Age: {$gt: 30 }})
> db.stackoverflow.find({Country: "Greece", Age: {$gt: 30 }}, {Age:1 , Country:1 , _id:0})