sql >> Databáze >  >> NoSQL >> MongoDB

$fitler vnořené pole pomocí $lte $gte

Můžete použít $filter agregace k odfiltrování searches pole

db.collection.aggregate([
  { "$match": { "username": "admin" }},
  { "$project": {
    "total": { "$size": "$searches" },
    "lasthour": {
      "$size": {
        "$filter": {
          "input": "$searches",
          "as": "search",
          "cond": {
            "$and": [
              { "$gte": ["$$search", onehourago] },
              { "$lte": ["$$search", now] }
            ]
          }
        }
      }
    },
    "today": {
      "$size": {
        "$filter": {
          "input": "$searches",
          "as": "search",
          "cond": {
            "$and": [
              { "$gte": ["$$search", yesterday] },
              { "$lte": ["$$search", now] }
            ]
          }
        }
      }
    }
  }}
])



  1. Kontejnerem spravované připojení MongoDB v Liberty + Spring Data

  2. MongoDB vložený v jazyce Java

  3. Struktura přírůstkové matice v MongoDb

  4. C# s mongodb DateTime Convert