Mongodb: 複数のフィールドから個別の値を選択する方法
次の構文を使用して、MongoDB の複数のフィールドで個別の値を選択できます。
db.collection.aggregate( [ { $group : { "_id": { field1: " $field1 ", field2: " $field2 " } } } ] )
次の例は、次のドキュメントを使用して収集チームでこの構文を使用する方法を示しています。
db.teams.insertOne({team: " Mavs ", position: " Guard ", points: 31 }) db.teams.insertOne({team: " Mavs ", position: " Guard ", points: 22 }) db.teams.insertOne({team: " Rockets ", position: " Center ", points: 19 }) db.teams.insertOne({team: " Rockets ", position: " Forward ", points: 26 }) db.teams.insertOne({team: " Rockets ", position: " Forward ", points: 29 }) db.teams.insertOne({team: " Cavs ", position: " Guard ", points: 33 })
例: 複数のフィールドで個別の値を選択する
次のクエリを使用して、すべての個別のチームとポジションのフィールド値を検索できます。
db.teams.aggregate( [ { $group : { "_id": { team: " $team ", position: " $position " } } } ] )
このクエリは次のドキュメントを返します。
{ _id: { team: 'Mavs', position: 'Guard' } } { _id: { team: 'Rockets', position: 'Forward' } } { _id: { team: 'Rockets', position: 'Center' } } { _id: { team: 'Cavs', position: 'Guard' } }
そして、次のクエリを使用して、チーム、ポジション、ポイントのフィールドのすべての個別の値を見つけることができます。
db.teams.aggregate( [ { $group : {"_id": {team: " $team ", position: " $position ", points: " $points "}}} ] )
このクエリは次のドキュメントを返します。
{ _id: { team: 'Cavs', position: 'Guard', points: 33 } } { _id: { team: 'Rockets', position: 'Forward', points: 29 } } { _id: { team: 'Mavs', position: 'Guard', points: 22 } } { _id: { team: 'Rockets', position: 'Forward', points: 26 } } { _id: { team: 'Mavs', position: 'Guard', points: 31 } } { _id: { team: 'Rockets', position: 'Center', points: 19 } }
「team」、「position 」、および「points」フィールドの値が同じ文書は 2 つとないため、すべての文書が返されることに注意してください。
追加リソース
次のチュートリアルでは、MongoDB で他の一般的な操作を実行する方法について説明します。
MongoDB: コレクションに新しいフィールドを追加する方法
MongoDB: グループ化してカウントする方法
MongoDB: 複数のフィールドでグループ化する方法