“MongoDB -Aggregatzahl” Code-Antworten

MongoDB -Aggregatzahl

#return the number of documents whose "field" field has a value of A 
query = db.collection.aggregate([{
          "$match": {
            "field": "A"
          }
        },{
          "$count": "number of occurrences"
}])
Annoyed Antelope

Mongo -Graf

db.collection.countDocuments( <query>, <options> )
Elegant Eland

Ähnliche Antworten wie “MongoDB -Aggregatzahl”

Fragen ähnlich wie “MongoDB -Aggregatzahl”

Weitere verwandte Antworten zu “MongoDB -Aggregatzahl” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen