MongoDB
 Computer >> コンピューター >  >> プログラミング >> MongoDB

MongoDBで個別の値をカウントしますか?


長さの概念を使用して、個別の値をカウントします。以下は構文です-

db.yourCollectionName.distinct("yourFieldName").length;

ドキュメントを使用してコレクションを作成しましょう-

> db.countDistinctDemo.insertOne({"StudentName":"John"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd6166de8cc557214c0dfa")
}
> db.countDistinctDemo.insertOne({"StudentName":"Chris"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd616ade8cc557214c0dfb")
}
> db.countDistinctDemo.insertOne({"StudentName":"Chris"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd616cde8cc557214c0dfc")
}
> db.countDistinctDemo.insertOne({"StudentName":"Carol"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd6170de8cc557214c0dfd")
}
> db.countDistinctDemo.insertOne({"StudentName":"David"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd6175de8cc557214c0dfe")
}
> db.countDistinctDemo.insertOne({"StudentName":"Carol"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cbd6181de8cc557214c0dff")
}

find()メソッドを使用してコレクションからすべてのドキュメントを表示する-

> db.countDistinctDemo.find().pretty();

これにより、次の出力が生成されます-

{ "_id" : ObjectId("5cbd6166de8cc557214c0dfa"), "StudentName" : "John" }
{ "_id" : ObjectId("5cbd616ade8cc557214c0dfb"), "StudentName" : "Chris" }
{ "_id" : ObjectId("5cbd616cde8cc557214c0dfc"), "StudentName" : "Chris" }
{ "_id" : ObjectId("5cbd6170de8cc557214c0dfd"), "StudentName" : "Carol" }
{ "_id" : ObjectId("5cbd6175de8cc557214c0dfe"), "StudentName" : "David" }
{ "_id" : ObjectId("5cbd6181de8cc557214c0dff"), "StudentName" : "Carol" }

以下は、個別の値をカウントするためのクエリです-

> db.countDistinctDemo.distinct("StudentName").length;

これにより、次の出力が生成されます-

4

  1. MongoDBでカーソルの反復をカウントする方法は?

    find()カーソルとともにwhileループを使用して、カスタムロジックを使用する必要があります。ドキュメントを使用してコレクションを作成しましょう- > db.demo724.insertOne( ...    { ...       details: ...       { ...          id:101, ...          otherDetails:[ ...    

  2. MySQLは値でカウントを選択しますか?

    これにはCOUNT()関数を使用できます。まず、デモテーブルを作成しましょう mysql> create table countValueDemo -> ( -> ShippingDatetime datetime, -> FirstValue int, -> SecondValue int -> ); Query OK, 0 rows affected (1.35 sec) 挿入コマンドを使用して、テーブルにいくつかのレコードを挿入します。クエリは次のとおりです- mysql> insert into countVal