MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

usuń wartości 0, jeśli po 0 następuje>=1 z tablic w MongoDB

Jedno podejście to:

db.collection.aggregate([
   {
      $set: {
         data: {
            $let: {
               vars: {
                  val: "$data_start",
                  prev: { $concatArrays: [[null], "$data_start"] } // shift values by one element 
               },
               in: {
                  $map: {
                     input: { $range: [0, { $size: "$$val" }] },
                     as: "idx",
                     in: {
                        $cond: {
                           if: {
                              $and: [
                                 { $eq: [{ $arrayElemAt: ["$$val", "$$idx"] }, 0] }, // is 0
                                 { $eq: [{ $arrayElemAt: ["$$val", "$$idx"] }, { $arrayElemAt: ["$$prev", "$$idx"] }] } // is equal to previous
                              ]
                           },
                           then: null,
                           else: {
                              data_start: { $arrayElemAt: ["$$val", "$$idx"] },
                              time_start: { $arrayElemAt: ["$time_start", "$$idx"] }
                           }
                        }
                     }
                  }
               }
            }
         }
      }
   },
   {
      $set: {
         data: {
            $filter: {
               input: "$data",
               cond: "$$this"// -> removes null's from array
            }
         }
      }
   }
])

Może musisz dostroić warunek i/lub odwrócić pętlę, np. input: { $range: [{ $size: "$$val" }, 0, -1] }

Plac zabaw Mongo



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. łączenie z bazą danych atlas mongo

  2. TypeError:nie można wywołać metody „get” undefined

  3. Strategie agregacji w czasie rzeczywistym w MongoDB

  4. Wstawianie i pobieranie dat i znaczników czasu w mongodb za pomocą PHP

  5. MongoDB $isoWeek