db.avoidDuplicateEntriesDemo.createIndex({"UserName":1},{unique:true});{ &a"/> db.avoidDuplicateEntriesDemo.createIndex({"UserName":1},{unique:true});{ &a">

ホームページ  >  記事  >  データベース  >  MongoDB での重複エントリを回避しますか?

MongoDB での重複エントリを回避しますか?

WBOY
WBOY転載
2023-08-29 08:29:131480ブラウズ

避免 MongoDB 中出现重复条目​​?

MongoDB でのエントリの重複を避けるために、createIndex() を使用できます。構文は次のとおりです -

db.yourCollectionName.createIndex({"yourFieldName":1},{unique:true});

上記の構文を実装してみましょう。 MongoDB 内の重複エントリを避けるためのクエリは次のとおりです。 -

> db.avoidDuplicateEntriesDemo.createIndex({"UserName":1},{unique:true});
{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}

次に、上記のコレクションにいくつかのレコードを挿入します。レコードを挿入するクエリは次のとおりです -

> db.avoidDuplicateEntriesDemo.insertOne({"UserName":"John"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c90e1824afe5c1d2279d697")
}

同じレコードを再度挿入しようとすると、エラーが発生します -

> db.avoidDuplicateEntriesDemo.insertOne({"UserName":"John"});
2019-03-19T18:03:08.465+0530 E QUERY [js] WriteError: E11000 duplicate key error collection: test.avoidDuplicateEntriesDemo index: UserName_1 dup key: { : "John" } :
WriteError({
   "index" : 0,
   "code" : 11000,
   "errmsg" : "E11000 duplicate key error collection: test.avoidDuplicateEntriesDemo index: UserName_1 dup key: { : \"John\" }",
   "op" : {
      "_id" : ObjectId("5c90e1844afe5c1d2279d698"),
      "UserName" : "John"
   }
})
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

別のレコードを挿入しましょう。クエリは次のとおりです。 -

> db.avoidDuplicateEntriesDemo.insertOne({"UserName":"Carol"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c90e18d4afe5c1d2279d699")
}

find() メソッドを使用して、コレクション内のすべてのドキュメントを表示します。クエリは次のとおりです -

> db.avoidDuplicateEntriesDemo.find();

以下は出力です -

{ "_id" : ObjectId("5c90e1824afe5c1d2279d697"), "UserName" : "John" }
{ "_id" : ObjectId("5c90e18d4afe5c1d2279d699"), "UserName" : "Carol" }

以上がMongoDB での重複エントリを回避しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。