Truy vấn trong MongoDB trông giống như sau:
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
}
)
Tài liệu cho $ và $ hoặc
Một số ví dụ và tài liệu chính thức cho MongoDB tìm thấy tại đây.