$lastN
定義
バージョン 5.2 で追加。
$lastN
は 集計アキュムレータまたは 配列演算子として使用できます。 集計アキュムレータとしては、グループ内の最後のn
要素の集計です。 配列演算子として、配列の末尾から指定された数の要素を返します。
集計アキュムレータ
$lasttN
が集計アキュムレータとして使用されている場合、返される要素は、指定されたソート順序にある場合にのみ意味があります。 グループに含まれる要素がn
未満の場合、 $lastN
はグループ内のすべての要素を返します。
構文
{ $lastN: { input: <expression>, n: <expression> } }
input
は、ドキュメントから最後のn
を取得するフィールドを指定します。 入力は任意の式にできます。n
は、定数であるか、$group
の_id
値に依存する正の整数式である必要があります。 詳しくは、 グループキーの例を参照してください。
動作
NULL および欠損値
$lastN
は、null 値をフィルタリングで除外しません。$lastN
欠落値を null に変換します。
グループから最後の 5 つのドキュメントを返す次の集計を検討してください。
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", lastFiveScores: { $lastN: { input: "$score", n: 5 } } } } ] )
この例では、次のことが行われます。
$documents
は、プレイヤーのスコアを含むリテラル ドキュメントを作成します。$group
はドキュメントをgameId
でグループ化します。 この例ではgameId
、G1
は 1 つのみです。PlayerD
はスコアが欠落しており、PlayerE
には nullscore
があります。 これらの値は両方とも null と見なされます。lastFiveScores
フィールドはinput : "$score"
を使用して指定され、配列として返されます。ソート条件がないため、最後の 5 つの
score
フィールドが返されます。
[ { _id: "G1", lastFiveScores: [ 1, 2, 3, null, null ] } ]
と の比較$lastN
$bottomN
$lastN
と$bottomN
のどちらのアキュムレータでも同様の結果が得られます。
一般に、
$group
に取り込まれるドキュメントがすでに順序付けられている場合は、$lastN
を使用する必要があります。最下位の
n
要素をソートして選択している場合、$bottomN
を使用すると 1 つのアキュムレータで両方のタスクを実行できます。$lastN
は集計式として使用できますが、$bottomN
は使用できません。
制限事項
ウィンドウ関数と集計式のサポート
$lastN
は集計式 としてサポートされています。
$lastN
はwindow operator
としてサポートされています。
例
以下のドキュメントを持つ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 } ])
1 つの一致の最後の 3 人のプレイヤー スコアを検索する
$lastN
アキュムレータを使用して、1 つの一致の最後の 3 つのスコアを検索できます。
db.gamescores.aggregate( [ { $match : { gameId : "G1" } }, { $group: { _id: "$gameId", lastThreeScores: { $lastN: { input: ["$playerId", "$score"], n:3 } } } } ] )
サンプル パイプライン:
$match
を使用して結果を単一のgameId
でフィルタリングします。 この場合は、G1
ます。$group
を使用して結果をgameId
でグループ化します。 この場合は、G1
ます。を使用して
$lastN
output : ["$playerId"," $score"]
から出力するフィールドを指定します。$lastN
を使用して、n : 3
とG1
のゲームの最後の 3 つのドキュメントを返します。
この操作は次の結果を返します。
[ { _id: "G1", lastThreeScores: [ [ "PlayerB", 33 ], [ "PlayerC", 99 ], [ "PlayerD", 1 ] ] } ]
複数のゲームにわたる最後の 3 人のプレイヤー スコアの検索
$lastN
アキュムレータを使用して、各ゲーム内の最後のn
入力フィールドを見つけることができます。
db.gamescores.aggregate( [ { $group: { _id: "$gameId", playerId: { $lastN: { input: [ "$playerId","$score" ], n: 3 } } } } ] )
サンプル パイプライン:
$group
を使用して結果をgameId
でグループ化します。$lastN
を使用して、n: 3
を持つ各ゲームの最後の 3 つのドキュメントを返します。を使用して
$lastN
input : ["$playerId", "$score"]
に入力するフィールドを指定します。
この操作は次の結果を返します。
[ { _id: 'G2', playerId: [ [ 'PlayerB', 14 ], [ 'PlayerC', 66 ], [ 'PlayerD', 80 ] ] }, { _id: 'G1', playerId: [ [ 'PlayerB', 33 ], [ 'PlayerC', 99 ], [ 'PlayerD', 1 ] ] } ]
と の使用$sort
$lastN
パイプラインの前半で$sort
ステージを使用すると、 $lastN
アキュムレータの結果に影響する可能性があります。
この例では、次のことが行われます。
{$sort : { score : -1 } }
は最高スコアを各グループの後ろにソートします。lastN
は、各グループの後ろから 3 つの最低スコアを返します。
db.gamescores.aggregate( [ { $sort : { score : -1 } }, { $group: { _id: "$gameId", playerId: { $lastN: { input: [ "$playerId","$score" ], n: 3 } } } } ] )
この操作は次の結果を返します。
[ { _id: 'G2', playerId: [ [ 'PlayerC', 66 ], [ 'PlayerB', 14 ], [ 'PlayerA', 10 ] ] }, { _id: 'G1', playerId: [ [ 'PlayerB', 33 ], [ 'PlayerA', 31 ], [ 'PlayerD', 1 ] ] } ]
のグループキーに基づいて を計算n
$group
また、 n
の値を動的に割り当てることもできます。 この例では、 $cond
式はgameId
フィールドで使用されています。
db.gamescores.aggregate([ { $group: { _id: {"gameId": "$gameId"}, gamescores: { $lastN: { input: "$score", n: { $cond: { if: {$eq: ["$gameId","G2"] }, then: 1, else: 3 } } } } } } ] )
サンプル パイプライン:
$group
を使用して結果をgameId
でグループ化します。input : "$score"
を使用して$lastN
に入力するフィールドを指定します。gameId
がG2
の場合、n
は 1、それ以外の場合、n
は 3 になります。
この操作は次の結果を返します。
[ { _id: { gameId: "G1" }, gamescores: [ 33, 99, 1 ] }, { _id: { gameId: "G2" }, gamescores: [ 80 ] } ]
集計式として$lastN
を使用
また、集計式として$lastN
を使用することもできます。
この例では、次のことが行われます。
$documents
は、値の配列を含むリテラル ドキュメントを作成します。$project
は$lastN
の出力を返すために使用されます。_id
は_id : 0
により出力から省略されます。$lastN
は[10, 20, 30, 40]
の入力配列を使用します。入力ドキュメントには、 配列の最後の 3 つの要素が返されます。
db.aggregate( [ { $documents: [ { array: [10, 20, 30, 40] } ] }, { $project: { lastThreeElements:{ $lastN: { input: "$array", n: 3 } } } } ] )
この操作は次の結果を返します。
[ { lastThreeElements: [ 20, 30, 40 ] } ]
配列演算子
構文
$lastN
の構文は次のとおりです。
{ $lastN: { n: <expression>, input: <expression> } }
動作
例
コレクションgames
には次のドキュメントがあります。
db.games.insertMany([ { "playerId" : 1, "score" : [ 1, 2, 3 ] }, { "playerId" : 2, "score" : [ 12, 90, 7, 89, 8 ] }, { "playerId" : 3, "score" : [ null ] }, { "playerId" : 4, "score" : [ ] }, { "playerId" : 5, "score" : [ 1293, null, 3489, 9 ]}, { "playerId" : 6, "score" : [ "12.1", 2, NumberLong("2090845886852"), 23 ]} ])
次の例では、 $lastN
演算子を使用して、各プレイヤーの最後の 3 つのスコアを検索します。 スコアは、 $addFields
によって作成された新しいフィールドlastScores
に返されます。
db.games.aggregate([ { $addFields: { lastScores: { $lastN: { n: 3, input: "$score" } } } } ])
この操作は次の結果を返します。
[{ "playerId": 1, "score": [ 1, 2, 3 ], "lastScores": [ 1, 2, 3 ] }, { "playerId": 2, "score": [ 12, 90, 7, 89, 8 ], "lastScores": [ 7, 89, 8 ] }, { "playerId": 3, "score": [ null ], "lastScores": [ null ] }, { "playerId": 4, "score": [ ], "lastScores": [ ] }, { "playerId": 5, "score": [ 1293, null, 3489, 9 ], "lastScores": [ null, 3489, 9 ] }, { "playerId": 6, "score": [ "12.1", 2, NumberLong("2090845886852"), 23 ], "lastScores": [ 2, NumberLong("2090845886852"), 23 ] }]