Definition定义
New in version 5.0.在版本5.0中新增。
$shift
Returns the value from an expression applied to a document in a specified position relative to the current document in the 返回应用于文档的表达式的值,该表达式位于$setWindowFields stage partition.$setWindowFields阶段分区中相对于当前文档的指定位置。
The $setWindowFields stage sortBy field value determines the document order. $setWindowFields阶段sortBy字段值决定了文档顺序。For more information on how MongoDB compares fields with different types, see BSON comparison order.有关MongoDB如何比较不同类型字段的更多信息,请参阅BSON比较顺序。
$shift is only available in the $setWindowFields stage.$shift仅在$setWindowFields阶段可用。
$shift syntax:语法:
{
$shift: {
output: <output expression>,
by: <integer>,
default: <default expression>
}
}
$shift takes a document with these fields:获取包含以下字段的文档:
output |
|
by |
|
default |
|
Behavior行为
如果在$shift returns an error if you specify a window in the $setWindowFields stage.$setWindowFields阶段指定窗口,$shift将返回错误。
Examples示例
Create a 创建一个cakeSales collection that contains cake sales in the states of California (CA) and Washington (WA):cakeSales集合,其中包含加利福尼亚州(CA)和华盛顿州(WA)的蛋糕销售:
db.cakeSales.insertMany( [
{ _id: 0, type: "chocolate", orderDate: new Date("2020-05-18T14:10:30Z"),
state: "CA", price: 13, quantity: 120 },
{ _id: 1, type: "chocolate", orderDate: new Date("2021-03-20T11:30:05Z"),
state: "WA", price: 14, quantity: 140 },
{ _id: 2, type: "vanilla", orderDate: new Date("2021-01-11T06:31:15Z"),
state: "CA", price: 12, quantity: 145 },
{ _id: 3, type: "vanilla", orderDate: new Date("2020-02-08T13:13:23Z"),
state: "WA", price: 13, quantity: 104 },
{ _id: 4, type: "strawberry", orderDate: new Date("2019-05-18T16:09:01Z"),
state: "CA", price: 41, quantity: 162 },
{ _id: 5, type: "strawberry", orderDate: new Date("2019-01-08T06:12:03Z"),
state: "WA", price: 43, quantity: 134 }
] )
The 以下示例中使用了cakeSales collection is used in the following examples.cakeSales集合。
Shift Using a Positive Integer使用正整数进行移位
This example uses 此示例在$shift in the $setWindowFields stage to output the quantity of the cake sales from each document following the current document for each state:$setWindowFields阶段使用$shift来输出每个state当前文档后每个文档的蛋糕销售quantity:
db.cakeSales.aggregate( [
{
$setWindowFields: {
partitionBy: "$state",
sortBy: { quantity: -1 },
output: {
shiftQuantityForState: {
$shift: {
output: "$quantity",
by: 1,
default: "Not available"
}
}
}
}
}
] )
In the example:在示例中:
partitionBy: "$state"partitions the documents in the collection by按state. There are partitions forCAandWA.state对集合中的文档进行分区。CA和WA有分区。sortBy: { quantity: -1 }sorts the documents in each partition by按quantityin descending order (-1), so the highestquantityis first.quantity降序(-1)对每个分区中的文档进行排序,因此quantity最多的文档位居前列。
outputafter在sortBy:sortBy后面Sets the将shiftQuantityForStatefield to thequantityvalue from the documents in eachstate.shiftQuantityForState字段设置为每个state下文档的quantity值。Uses使用$shiftto return thequantityvalue from the document that follows the current document in the output.$shift从输出中当前文档后面的文档中返回数量值。
In this example output, the shifted 在这个示例输出中,每个返回的文档的quantity value is shown in the shiftQuantityForState field for each returned document:shiftQuantityForState字段中都显示了偏移的quantity值:
{ "_id" : 4, "type" : "strawberry", "orderDate" : ISODate("2019-05-18T16:09:01Z"),
"state" : "CA", "price" : 41, "quantity" : 162, "shiftQuantityForState" : 145 }
{ "_id" : 2, "type" : "vanilla", "orderDate" : ISODate("2021-01-11T06:31:15Z"),
"state" : "CA", "price" : 12, "quantity" : 145, "shiftQuantityForState" : 120 }
{ "_id" : 0, "type" : "chocolate", "orderDate" : ISODate("2020-05-18T14:10:30Z"),
"state" : "CA", "price" : 13, "quantity" : 120, "shiftQuantityForState" : "Not available" }
{ "_id" : 1, "type" : "chocolate", "orderDate" : ISODate("2021-03-20T11:30:05Z"),
"state" : "WA", "price" : 14, "quantity" : 140, "shiftQuantityForState" : 134 }
{ "_id" : 5, "type" : "strawberry", "orderDate" : ISODate("2019-01-08T06:12:03Z"),
"state" : "WA", "price" : 43, "quantity" : 134, "shiftQuantityForState" : 104 }
{ "_id" : 3, "type" : "vanilla", "orderDate" : ISODate("2020-02-08T13:13:23Z"),
"state" : "WA", "price" : 13, "quantity" : 104, "shiftQuantityForState" : "Not available" }Shift Using a Negative Integer使用负整数进行移位
This example uses 此示例在$shift in the $setWindowFields stage to output the quantity of the cake sales from each document before the current document for each state:$setWindowFields阶段使用$shift输出每个state当前文档之前每个文档的蛋糕销售quantity:
db.cakeSales.aggregate( [
{
$setWindowFields: {
partitionBy: "$state",
sortBy: { quantity: -1 },
output: {
shiftQuantityForState: {
$shift: {
output: "$quantity",
by: -1,
default: "Not available"
}
}
}
}
}
] )
In the example:在示例中:
partitionBy: "$state"partitions the documents in the collection by按state. There are partitions forCAandWA.state对集合中的文档进行分区。CA和WA有分区。sortBy: { quantity: -1 }sorts the documents in each partition by按quantityin descending order (-1), so the highestquantityis first.quantity降序(-1)对每个分区中的文档进行排序,因此quantity最多的文档位居前列。
outputafter在sortBy:sortBy后面:Sets the将shiftQuantityForStatefield to thequantityvalue from the documents in eachstate.shiftQuantityForState字段设置为每个state下文档的quantity值。Uses使用$shiftto return thequantityvalue from the document before the current document in the output.$shift返回输出中当前文档之前的文档中的quantity值。
In this example output, the shifted 在这个示例输出中,每个返回的文档的quantity value is shown in the shiftQuantityForState field for each returned document:shiftQuantityForState字段中都显示了偏移的quantity值:
{ "_id" : 4, "type" : "strawberry", "orderDate" : ISODate("2019-05-18T16:09:01Z"),
"state" : "CA", "price" : 41, "quantity" : 162, "shiftQuantityForState" : "Not available" }
{ "_id" : 2, "type" : "vanilla", "orderDate" : ISODate("2021-01-11T06:31:15Z"),
"state" : "CA", "price" : 12, "quantity" : 145, "shiftQuantityForState" : 162 }
{ "_id" : 0, "type" : "chocolate", "orderDate" : ISODate("2020-05-18T14:10:30Z"),
"state" : "CA", "price" : 13, "quantity" : 120, "shiftQuantityForState" : 145 }
{ "_id" : 1, "type" : "chocolate", "orderDate" : ISODate("2021-03-20T11:30:05Z"),
"state" : "WA", "price" : 14, "quantity" : 140, "shiftQuantityForState" : "Not available" }
{ "_id" : 5, "type" : "strawberry", "orderDate" : ISODate("2019-01-08T06:12:03Z"),
"state" : "WA", "price" : 43, "quantity" : 134, "shiftQuantityForState" : 140 }
{ "_id" : 3, "type" : "vanilla", "orderDate" : ISODate("2020-02-08T13:13:23Z"),
"state" : "WA", "price" : 13, "quantity" : 104, "shiftQuantityForState" : 134 }