“Zählen Sie in MongoDB” Code-Antworten

Mongo -Grafelemente in Array

> db.mycollection.insert({'foo':[1,2,3,4]})
> db.mycollection.insert({'foo':[5,6,7]})

> db.mycollection.aggregate([{$project: { count: { $size:"$foo" }}}])
{ "_id" : ObjectId("5314b5c360477752b449eedf"), "count" : 4 }
{ "_id" : ObjectId("5314b5c860477752b449eee0"), "count" : 3 }
Lucky Lobster

Siehe Anzahl der Dokumente in der MongoDB -Sammlung

db.collection.count()
AlbaOpus

Mongo -Graf

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

Zählen Sie in MongoDB

db.people.count( { age: { $gt: 30 } } )
db.people.find( { age: { $gt: 30 } } ).count()

-- sql 
SELECT COUNT(*)
FROM people
WHERE age > 30
Tiny Coders

Ähnliche Antworten wie “Zählen Sie in MongoDB”

Fragen ähnlich wie “Zählen Sie in MongoDB”

Weitere verwandte Antworten zu “Zählen Sie in MongoDB” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen