sql >> Database >  >> NoSQL >> MongoDB

Datums zoeken en tijd negeren in mongoDB

Een manier om dit te doen zou zijn om de aggregation framework en profiteer van de date aggregation operators . Bijvoorbeeld:

db.camps.aggregate(
   [
     // Perform the initial match to filter docs by 'status' and 'camp_id'
     {
       $match:
         {
           status: 1,
           camp_id: pCampID
         }
     },
     // Extract the year, month and day portions of the 'enddate' 
     {
       $project:
         {
           year: { $year: "$enddate" },
           month: { $month: "$enddate" },
           day: { $dayOfMonth: "$enddate" },
           status: 1,
           camp_id: 1
         }
     },
     // Filter by date - Replace hard-coded values with values you want
     {
       $match:
         {
           year: { $gte: 2014 },
           month: { $gte: 10 },
           day: { $gte: 10 }
         }
     }
   ]
)



  1. Frontend en backend met enkele cache

  2. ID ophalen van het laatst ingevoegde document in een mongoDB met Java-stuurprogramma

  3. mongoexport retourneren wetenschappelijke (exponentiële) notatie

  4. Ondersteunt Moongoose 3.8.8 de $position-operator?