MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Ottieni gli ultimi documenti con criteri distinti

Puoi utilizzare il framework di aggregazione per raggiungere questo obiettivo:

 db.collection.aggregate(
          [
             {$match:
                  {action:'entry'}
             },
             {$group:
                  {_id:'$name',
                   first:
                         {$max:'$timestamp'}
                  }
             }
          ])

Se desideri includere altri campi nei risultati, puoi utilizzare $first operatore

 db.collection.aggregate(
          [
             {$match:
                  {action:'entry'}
             },
             {$sort:
                  {name:1, timestamp:-1}
             },
             {$group:
                  {_id:'$name',
                   timestamp: {$first:'$timestamp'},
                   otherField: {$first:'$otherField'},
                  }
             }
          ])