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

MongoDB — Uzyskaj najnowszą niepustą wartość pola z dokumentów ze znacznikiem czasu

Możesz spróbować tego:

db.getCollection('test').aggregate([
    //Sort
    {$sort: { datetime: -1 }},
    //Add fields to an array
    {$group: {
        "_id": null,
        "field1": { $push: "$field1" },
        "field2": { $push: "$field2" },
    }},

    //Filter and do not include null values
    {$project: {
        "field1notNull" : {
              $filter: {
               input: "$field1",
               as: "f",
               cond: { $ne: [ "$$f", null ] }
            }
          },
        "field2notNull" : {
              $filter: {
               input: "$field2",
               as: "f",
               cond: { $ne: [ "$$f", null ] }
            }
          }
        }
    },
    //Get the first values of each
    {$project: {
        "_id": null,
        "field1": {$arrayElemAt: ["$field1notNull", 0]},
        "field2": {$arrayElemAt: ["$field2notNull", 0]} 
    }}
])


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Wiele do wielu relacji z MongoDB na dużą skalę

  2. MongoDB:wypisz „id” zamiast „_id”

  3. Dopasowanie tablicy mongodb

  4. Zapytanie Morphia z operatorem lub

  5. pushOrModify jak operator dla poddokumentu mongo