MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie kann man vierteljährlich Daten gruppieren?

Sie könnten den $cond verwenden Operator, um zu prüfen, ob:

  • Der $month ist <= 3 , projizieren Sie ein Feld namens quarter withvalue als "one".
  • Der $month ist <= 6 , projizieren Sie ein Feld namens quarter withvalue als "two".
  • Der $month ist <= 9 , projizieren Sie ein Feld namens quarter mit Wert als "drei".
  • ansonsten der Wert des Feldes quarter wäre "vierte".
  • Dann $group bis zum quarter Feld.

Code:

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" } } },
]);

Spezifisch für Ihr Schema:

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" } } },
]);