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

mangusta Data di confronto senza tempo e Raggruppa per più proprietà?

Puoi provare ad abbinare la category specificata e createdAt -date usando $match , quindi raggruppa e infine usa $addToSet per ottenere tutti gli staffId univoci s:

db.collection.aggregate([
  {
    $match: {
      "category": "trend",
      "createdAt": {$gte: new Date("2020-08-13T00:00:00Z"), $lt: ISODate("2020-08-14T00:00:00Z")}
    }
  },
  {
    "$group": {
      "_id": null,
      "staffIds": {
        "$addToSet": "$staffId"
      }
    }
  }
]);

Ecco un esempio su mongoplayground (dovevo usare stringhe e regex per la data poiché ISODate non è supportato lì):https://mongoplayground.net/p/oGM7cfvCRQx