Docs Menu
Docs Home
/
MongoDBマニュアル
/ / /

$top(集計アキュムレータ)

項目一覧

  • 定義
  • 構文
  • 動作
  • 制限事項
$top

バージョン 5.2 で追加

指定ソート順に従って、グループ内の最上位の要素を返します。

{
$top:
{
sortBy: { <field1>: <sort order>, <field2>: <sort order> ... },
output: <expression>
}
}
フィールド
必要性
説明
sortBy
必須
$sortのような構文で結果の順序を指定します。
出力
必須
グループ内の各要素の出力を表し、任意の 式 にすることができます。

スコアのグループから最上位のドキュメントを返す次の集計を検討してください。

  • $top は、null 値をフィルタリングで除外しません。

  • $top 欠落値を null に変換します。

db.aggregate( [
{
$documents: [
{ playerId: "PlayerA", gameId: "G1", score: 1 },
{ playerId: "PlayerB", gameId: "G1", score: 2 },
{ playerId: "PlayerC", gameId: "G1", score: 3 },
{ playerId: "PlayerD", gameId: "G1"},
{ playerId: "PlayerE", gameId: "G1", score: null }
]
},
{
$group:
{
_id: "$gameId",
playerId:
{
$top:
{
output: [ "$playerId", "$score" ],
sortBy: { "score": 1 }
}
}
}
}
] )

この例では、次のことが行われます。

  • $documents は、プレイヤーのスコアを含むリテラル ドキュメントを作成します。

  • $groupはドキュメントをgameIdでグループ化します。 この例ではgameIdG1は 1 つのみです。

  • PlayerD はスコアが欠落しており、 PlayerEには null scoreがあります。 これらの値は両方とも null と見なされます。

  • playerIdフィールドとscoreフィールドはoutput : ["$playerId"," $score"]として指定され、配列値として返されます。

  • sortBy: { "score": 1 }で並べ替え順序を指定します。

  • PlayerDPlayerEは最上位要素に関連付けられています。 PlayerDは上位のscoreとして返されます。

  • 複数の null 値に対してより明確な同点動作を実現するには、 sortByにフィールドを追加します。

[
{
_id: 'G1',
playerId: [ 'PlayerD', null ]
}
]

$top 集計式としてサポートされていません。

$topwindow operatorとしてサポートされています。

$topを呼び出す集計パイプラインには100 MB の制限が適用されます。 個々のグループでこの制限を超えると、集計はエラーで失敗します。

以下のドキュメントを持つgamescoresコレクションを考えてみましょう。

db.gamescores.insertMany([
{ playerId: "PlayerA", gameId: "G1", score: 31 },
{ playerId: "PlayerB", gameId: "G1", score: 33 },
{ playerId: "PlayerC", gameId: "G1", score: 99 },
{ playerId: "PlayerD", gameId: "G1", score: 1 },
{ playerId: "PlayerA", gameId: "G2", score: 10 },
{ playerId: "PlayerB", gameId: "G2", score: 14 },
{ playerId: "PlayerC", gameId: "G2", score: 66 },
{ playerId: "PlayerD", gameId: "G2", score: 80 }
])

$topアキュムレータを使用して、1 つのゲームで最高スコアを見つけることができます。

db.gamescores.aggregate( [
{
$match : { gameId : "G1" }
},
{
$group:
{
_id: "$gameId",
playerId:
{
$top:
{
output: [ "$playerId", "$score" ],
sortBy: { "score": -1 }
}
}
}
}
] )

サンプル パイプライン:

  • $matchを使用して結果を単一のgameIdでフィルタリングします。 この場合は、 G1ます。

  • $groupを使用して結果をgameIdでグループ化します。 この場合は、 G1ます。

  • を使用して$top output : ["$playerId"," $score"]の出力するフィールドを指定します。

  • スコアを降順で並べ替えるには、 sortBy: { "score": -1 }を使用します。

  • ゲーム内で最高のスコアを返すには、 $topを使用します。

この操作は次の結果を返します。

[ { _id: 'G1', playerId: [ 'PlayerC', 99 ] } ]

$topアキュムレータを使用して、各ゲームの上部のscoreを見つけることができます。

db.gamescores.aggregate( [
{
$group:
{ _id: "$gameId", playerId:
{
$top:
{
output: [ "$playerId", "$score" ],
sortBy: { "score": -1 }
}
}
}
}
] )

サンプル パイプライン:

  • $groupを使用して結果をgameIdでグループ化します。

  • $topを使用して、各ゲームの上位scoreを返します。

  • を使用して$top output : ["$playerId", "$score"]の出力するフィールドを指定します。

  • スコアを降順で並べ替えるには、 sortBy: { "score": -1 }を使用します。

この操作は次の結果を返します。

[
{ _id: 'G2', playerId: [ 'PlayerD', 80 ] },
{ _id: 'G1', playerId: [ 'PlayerC', 99 ] }
]

戻る

$toObjectId