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

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" }

  1. 重複する値の挿入を回避するためのMySQLUNIQUE宣言?

    以下は、MySQLのUNIQUE句の宣言です- create table yourTableName (    yourColumnName1 dataType,    yourColumnName2 dataType,    UNIQUE(yourColumnName1),    UNIQUE(yourColumnName1) );を作成します。 まずテーブルを作成しましょう- mysql> create table DemoTable (    Value int,   &

  2. Pythonのリストで重複するエントリを削除するプログラム

    numsという番号のリストがあるとすると、リストに複数回表示される番号を削除する必要があります。また、元のリストに表示される順序を維持する必要があります。 したがって、入力がnums =[2、4、6、1、4、6、9]の場合、これらの要素は1回しか表示されないため、出力は[2、1、9]になります。 これを解決するには、次の手順に従います- dict:=新しい地図 numsの各iについて、 私が口述されていない場合は、 dict [i]:=0 dict [i]:=dict [i] + 1 dict[e]が1であるnumsのすべての要素eを含むリストを返します 理解を深