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

Søgning efter datoer og ignorering af tid i mongoDB

En måde at gøre det på ville være at bruge aggregation framework og drag fordel af date aggregation operators . For eksempel:

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. Fejl under kørsel af Lua-script fra Redis-klient

  2. MongoDB indlejret i java

  3. MongoDB-Escape prikker '.' i kortnøgle]

  4. Brug af Async med MongoDb til at udfylde samlingsdokumenter i rækkefølge