我在 MongoDB 中有一个名为组织的集合,
organization:{
{
"_id": "520",
"org_name": "group1",
"type": "default",
"zip_codes": {
"0": {
"0": "012345",
"1": "044034"
}
}
},
{
"_id": "521",
"org_name": "hvbdf",
"type": "custome",
"zip_codes": {
"0": {
"0": "012345"
}
}
}
}
我想获取 type=default 和 zip_codes=012345 的全部文档
我尝试这个查询,
$cursor = $collect->find(array('type' => 'default','zip_codes'=>array('012345')));
但它没有给出输出,所以请帮助我,我正在使用 php 和 mongodb。