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を使用しています。