固定値フィールドでMongoDB複合インデックスを設定します
このために、createIndex()の概念を使用し、インデックスを作成します-
> db.compoundIndexDemo.createIndex({"StudentName":1,"StudentAge":1},{unique:true}); { "createdCollectionAutomatically" : true, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 }
まず、ドキュメントを使用してコレクションを作成しましょう-
> db.compoundIndexDemo.insertOne({"StudentName":"Chris"}); { "acknowledged" : true, "insertedId" : ObjectId("5e084c1d25ddae1f53b62207") } > db.compoundIndexDemo.insertOne({"StudentName":"Chris","StudentAge":23}); { "acknowledged" : true, "insertedId" : ObjectId("5e084c5625ddae1f53b62209") } > db.compoundIndexDemo.insertOne({"StudentName":"Chris","StudentAge":22}); { "acknowledged" : true, "insertedId" : ObjectId("5e084c5b25ddae1f53b6220a") } > db.compoundIndexDemo.insertOne({"StudentName":"Chris","StudentAge":23}); 2019-12-29T12:19:02.225+0530 E QUERY [js] WriteError: E11000 duplicate key error collection: web.compoundIndexDemo index: StudentName_1_StudentAge_1 dup key: { : "Chris", : 23.0 } : WriteError({ "index" : 0, "code" : 11000, "errmsg" : "E11000 duplicate key error collection: web.compoundIndexDemo index: StudentName_1_StudentAge_1 dup key: { : \"Chris\", : 23.0 }", "op" : { "_id" : ObjectId("5e084c5e25ddae1f53b6220b"), "StudentName" : "Chris", "StudentAge" : 23 } }) WriteError@src/mongo/shell/bulk_api.js:461:48 Bulk/mergeBatchResults@src/mongo/shell/bulk_api.js:841:49 Bulk/executeBatch@src/mongo/shell/bulk_api.js:906:13 Bulk/this.execute@src/mongo/shell/bulk_api.js:1150:21 DBCollection.prototype.insertOne@src/mongo/shell/crud_api.js:252:9 @(shell):1:1
以下は、find()メソッドを使用してコレクションからすべてのドキュメントを表示するためのクエリです-
> db.compoundIndexDemo.find().pretty();
これにより、次の出力が生成されます-
{ "_id" : ObjectId("5e084c1d25ddae1f53b62207"), "StudentName" : "Chris" } { "_id" : ObjectId("5e084c5625ddae1f53b62209"), "StudentName" : "Chris", "StudentAge" : 23 } { "_id" : ObjectId("5e084c5b25ddae1f53b6220a"), "StudentName" : "Chris", "StudentAge" : 22 }
-
MongoDB save()メソッドで変数値を設定します
db.yourCollectionName.save(yourVariableName)を使用して変数値を設定します。ここで、「yourVariableName」は変数です。 例を見て、変数を作成しましょう- > var Info={"Name":"David", ... "CountryName":"US", ... "ProjectDetails":[{"ClientName":"David","ProjectName":&
-
特定のフィールド値を持つドキュメントをフェッチするためのMongoDB集約?
これには、aggregate()を使用します。値が「21」のフィールド「Age」を持つドキュメントをフェッチする必要があるとします。 ドキュメントを使用してコレクションを作成しましょう- > db.demo685.insertOne( ... { ... "details": ... [ ... { ...