$in
を使用できます オペレーター
このために:
cursor <- mongo.find(mongo, "test.people",
list(last.name="Smith",
first.name=list('$in'=c('John','Bob','Catherine'))
)
)
MongoDB 高度なクエリ
を読む価値があります。 ページと
データ構造は、操作が難しい可能性があります。クエリを説明するために、ドキュメントの実際的な例が必要になります。
データ構造についていくつかの仮定を立てて、単純な「and」クエリの例を次に示します。
cursor <- mongo.find(mongo, "test.people",
list(
first.name='John',
fy2012.job='unemployed',
age = 40
)
)