How to set a primary key in MongoDB?

前端 未结 9 973
再見小時候
再見小時候 2020-12-07 21:46

I want to set one of my fields as primary key. I am using MongoDB as my NoSQL.

相关标签:
9条回答
  • 2020-12-07 22:14

    The other way is to create Indexes for your collection and make sure that they are unique.

    You can find more on the following link

    I actually find this pretty simple and easy to implement.

    0 讨论(0)
  • 2020-12-07 22:14

    If you thinking like RDBMS, you can't create primary key. Default primary key is _id. But you can create Unique Index. Example is bellow.

    db.members.createIndex( { "user_id": 1 }, { unique: true } )
    
    db.members.insert({'user_id':1,'name':'nanhe'})
    
    db.members.insert({'name':'kumar'})
    
    db.members.find();
    

    Output is bellow.

    { "_id" : ObjectId("577f9cecd71d71fa1fb6f43a"), "user_id" : 1, "name" : "nanhe" }

    { "_id" : ObjectId("577f9d02d71d71fa1fb6f43b"), "name" : "kumar" }

    When you try to insert same user_id mongodb throws a write error.

    db.members.insert({'user_id':1,'name':'aarush'})
    

    WriteResult({ "nInserted" : 0, "writeError" : { "code" : 11000, "errmsg" : "E11000 duplicate key error collection: student.members index: user_id_1 dup key: { : 1.0 }" } })

    0 讨论(0)
  • 2020-12-07 22:16

    One way of achieving this behaviour is by setting the value to _id (which is reserved for a primary key in MongoDB) field based on the custom fields you want to treat as primary key.
    i.e. If I want employee_id as the primary key then at the time of creating document in MongoDB; assign _id value same as that of employee_id.

    0 讨论(0)
  • 2020-12-07 22:16

    If you're using Mongo on Meteor, you can use _ensureIndex:

    CollectionName._ensureIndex({field:1 }, {unique: true});
    
    0 讨论(0)
  • 2020-12-07 22:18

    In mongodb _id field is reserved for primary key. Mongodb use an internal ObjectId value if you don't define it in your object and also create an index to ensure performance.

    But you can put your own unique value for _id and Mongodb will use it instead of making one for you. And even if you want to use multiple field as primary key you can use an object:

    { _id : { a : 1, b: 1} }
    

    Just be careful when creating these ids that the order of keys (a and b in the example) matters, if you swap them around, it is considered a different object.

    0 讨论(0)
  • 2020-12-07 22:21

    http://docs.mongodb.org/manual/tutorial/create-an-auto-incrementing-field/

    You can also check this link and auto-increment the _id field.

    0 讨论(0)
提交回复
热议问题