Заявката в MongoDB изглежда така:
Database.collection_name.find(
// This is the condition
{
$and: [
{
$or: [
{province: 'nb'},
{province: 'on'}
]
},
{
city: "toronto"
},
{
first_name: "steven"
}
]
},
// Specify the fields that you need
{
first_name: 1,
_id: 1
}
)
Документация за $и $или
Тук можете да намерите някои примери и официалната документация за MongoDB.