count()
和find()
.count()之间没有区别。让我们看看它们都是如何工作的。为了理解这个概念,让我们用文档创建一个集合。使用文档创建集合的查询如下-
> db.countDemo.insertOne({"UserId":1,"UserName":"John"}); { "acknowledged" : true, "insertedId" : ObjectId("5c7f9d278d10a061296a3c5d") } > db.countDemo.insertOne({"UserId":2,"UserName":"Carol"}); { "acknowledged" : true, "insertedId" : ObjectId("5c7f9d308d10a061296a3c5e") } > db.countDemo.insertOne({"UserId":3,"UserName":"Bob"}); { "acknowledged" : true, "insertedId" : ObjectId("5c7f9d3a8d10a061296a3c5f") } > db.countDemo.insertOne({"UserId":4,"UserName":"Mike"}); { "acknowledged" : true, "insertedId" : ObjectId("5c7f9d428d10a061296a3c60") }
在find()
method的帮助下显示集合中的所有文档。查询如下-
> db.countDemo.find().pretty();
以下是输出-
{ "_id" : ObjectId("5c7f9d278d10a061296a3c5d"), "UserId" : 1, "UserName" : "John" } { "_id" : ObjectId("5c7f9d308d10a061296a3c5e"), "UserId" : 2, "UserName" : "Carol" } { "_id" : ObjectId("5c7f9d3a8d10a061296a3c5f"), "UserId" : 3, "UserName" : "Bob" } { "_id" : ObjectId("5c7f9d428d10a061296a3c60"), "UserId" : 4, "UserName" : "Mike" }
这是查询count()
记录数量的记录-
> db.countDemo.count();
以下是输出-
4
这是对find()
.count()的查询。查询如下-
> db.countDemo.find().count();
以下是输出-
4