$ cond
を利用できます 次のことを確認する演算子:
-
$ month
<=3
です 、Quarter
という名前のフィールドを投影します withvalueは「1」です。 -
$ month
<=6
です 、Quarter
という名前のフィールドを投影します withvalueは「2」です。 -
$ month
<=9
です 、Quarter
という名前のフィールドを投影します withvalueは「3」です。 - フィールド
quarter
の値 「4番目」になります。 - 次に
$group
四半期コード> フィールド。
コード:
db.collection.aggregate([
{
$project: {
date: 1,
quarter: {
$cond: [
{ $lte: [{ $month: "$date" }, 3] },
"first",
{
$cond: [
{ $lte: [{ $month: "$date" }, 6] },
"second",
{
$cond: [{ $lte: [{ $month: "$date" }, 9] }, "third", "fourth"],
},
],
},
],
},
},
},
{ $group: { _id: { quarter: "$quarter" }, results: { $push: "$date" } } },
]);
スキーマに固有:
db.collection.aggregate([
{
$project: {
dateAttempted: 1,
userId: 1,
topicId: 1,
ekgId: 1,
title: 1,
quarter: {
$cond: [
{ $lte: [{ $month: "$dateAttempted" }, 3] },
"first",
{
$cond: [
{ $lte: [{ $month: "$dateAttempted" }, 6] },
"second",
{
$cond: [
{ $lte: [{ $month: "$dateAttempted" }, 9] },
"third",
"fourth",
],
},
],
},
],
},
},
},
{ $group: { _id: { quarter: "$quarter" }, results: { $push: "$$ROOT" } } },
]);