sql >> Databáze >  >> NoSQL >> MongoDB

MongoDB, Flask, agregujte s dotazem $unwind

Můžete toho dosáhnout pomocí $unwind a poté $group pomocí $push , takto:

db.pitcrewdb.aggregate([
  {
    "$match": {
      "run_number": "1",
      "frames.frame_number": {
        "$gte": 2
      }
    }
  },
  {
    "$project": {
      "_id": 0
    }
  },
  {
    "$unwind": "$frames"
  },
  {
    "$match": {
      "frames.frame_number": {
        "$gte": 2
      }
    }
  },
  {
    "$group": {
      "_id": "$run_number",
      "frames": {
        "$push": "$frames"
      }
    }
  }
])

$unwind zničí vaše pole a poté filtrujete výsledky a po $group znovu je

Nebo to můžete udělat také pomocí $filter

db.pitcrewdb.aggregate([
  {
    "$match": {
      "run_number": "1"
    }
  },
  {
    "$project": {
      "_id": 0,
      "frames": {
        $filter: {
          input: "$frames",
          as: "frame",
          cond: {
            $gte: [
              "$$frame.frame_number",
              2
            ]
          }
        }
      }
    }
  }
])



  1. Jak exportovat všechny sbírky v MongoDB?

  2. Úložiště Kubernetes NFS využívající PV a PVC

  3. Jak MongoDB třídí záznamy, když není zadáno žádné pořadí řazení?

  4. UnhandledPromiseRejectionWarning:MongooseServerSelectionError