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

MongoDBで一意のインデックスを設定する


MongoDBで一意のインデックスを設定するには、unique:trueを使用します。ドキュメントを使用してコレクションを作成しましょう-

> db.demo257.ensureIndex({Name:1},{unique:true});
{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}
> db.demo257.insertOne({Name:"Chris"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e47a5e51627c0c63e7dba91")
}
> db.demo257.insertOne({Name:"Bob"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e47a5e81627c0c63e7dba92")
}
> db.demo257.insertOne({Name:"Chris"});
2020-02-15T13:33:54.064+0530 E QUERY    [js] WriteError: E11000 duplicate key error collection: test.demo257 index: Name_1 dup key: { : "Chris" } :
WriteError({
   "index" : 0,
   "code" : 11000,
   "errmsg" : "E11000 duplicate key error collection: test.demo257 index: Name_1 dup key: { : \"Chris\" }",
   "op" : {
      "_id" : ObjectId("5e47a5ea1627c0c63e7dba93"),
      "Name" : "Chris"
   }
})
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.demo257.find();

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

{ "_id" : ObjectId("5e47a5e51627c0c63e7dba91"), "Name" : "Chris" }
{ "_id" : ObjectId("5e47a5e81627c0c63e7dba92"), "Name" : "Bob" }

  1. MongoDBネストドキュメントに条件を設定しますか?

    特定の値よりも大きい値を持つドキュメントを見つける必要があるとしましょう。このためには、ネストされたドキュメントでドット表記を使用し、$gtで条件を設定します。 例を見て、ドキュメントを使用してコレクションを作成しましょう- > db.demo688.insert( ... { ... information:{id:1,details:[ ...    {otherDetails:{ ...       values:75 ...       } ...    } ... ] ...

  2. MongoDBコレクションにインデックスを作成しますか?

    インデックスを作成するには、MongoDBでcreateIndex()を使用します。ドキュメントを使用してコレクションを作成しましょう- > db.demo702.createIndex({"details.id":1}); {    "createdCollectionAutomatically" : true,    "numIndexesBefore" : 1,    "numIndexesAfter" : 2,    &q