sql >> Database >  >> NoSQL >> MongoDB

mongodb-query versus mysql

Naast @Joe en @Nenad beantwoorden de fout voor de aftrekking:'$rate-$100';

U moet uw logische structuur opnieuw positioneren.

  1. Voer berekening uit:SUM((credit*(100-rate))/100) .
  2. Groepeer op $accountNum en verzamel SUM voor 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
  }
]

Voorbeeld MongoDB-speeltuin



  1. Java-object in MongoDB-verzameling invoegen met Java

  2. Flow Router werkt niet met ObjectID. Enige oplossing?

  3. MongoDB Norm-query geneste objecten

  4. erfenis in documentendatabase?