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

Mongodb-Abfrage vs. MySQL

Außerdem beantworten @Joe und @Nenad den Fehler bei der Subtraktion:'$rate-$100';

Sie müssen Ihre Logikstruktur neu positionieren.

  1. Berechnung durchführen:SUM((credit*(100-rate))/100) .
  2. Gruppieren nach $accountNum und Aggregat SUM für resultMultiply .
db.collection.aggregate([
  {
    $match: {
      rate: {
        $ne: 0
      }
    }
  },
  {
    $addFields: {
      resultMultiply: {
        $divide: [
          {
            $multiply: [
              "$credit",
              {
                "$subtract": [
                  100,
                  "$rate"
                ]
              }
            ]
          },
          100
        ]
      }
    }
  },
  {
    $group: {
      _id: "$accountNum",
      total: {
        $sum: "$resultMultiply"
      }
    }
  }
])
[
  {
    "_id": 2,
    "total": 1.5
  },
  {
    "_id": 1,
    "total": 5.5
  }
]

Beispiel für einen MongoDB-Playground