使用 MongoDB 获取数组中不同值的长度


要获取唯一值,请使用 MongoDB DISTINCT。对于长度,请使用 LENGTH()。让我们创建一个包含文档的集合 -

> db.demo36.insertOne({"Names":["Chris","Bob"]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e17643bcfb11e5c34d898d4")
}
> db.demo36.insertOne({"Names":["Mike","Sam","Carol"]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e176449cfb11e5c34d898d5")
}
> db.demo36.insertOne({"Names":["Chris","Bob","David"]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e17645bcfb11e5c34d898d6")
}

通过 find() 方法显示集合中的所有文档 -

> db.demo36.find();

这将产生以下输出 -

{ "_id" : ObjectId("5e17643bcfb11e5c34d898d4"), "Names" : [ "Chris", "Bob" ] }
{ "_id" : ObjectId("5e176449cfb11e5c34d898d5"), "Names" : [ "Mike", "Sam", "Carol" ] }
{ "_id" : ObjectId("5e17645bcfb11e5c34d898d6"), "Names" : [ "Chris", "Bob", "David" ] }

以下是获取长度的查询 -

> db.demo36.distinct('Names').length;

这将产生以下输出 -

6

更新时间: 02-04-2020

281 次浏览

开启你的 职业生涯

完成课程认证

开始
广告