MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Jak zaktualizować _id jednego dokumentu MongoDB?

Nie możesz go zaktualizować. Będziesz musiał zapisać dokument pod nowym _id , a następnie usuń stary dokument.

// store the document in a variable
doc = db.clients.findOne({_id: ObjectId("4cc45467c55f4d2d2a000002")})

// set a new _id on the document
doc._id = ObjectId("4c8a331bda76c559ef000004")

// insert the document, using the new _id
db.clients.insert(doc)

// remove the document with the old _id
db.clients.remove({_id: ObjectId("4cc45467c55f4d2d2a000002")})


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB $setEquals

  2. MongoDB $setUnion

  3. Aktualizacja MongoDBWiele()

  4. mongoengine - Zapytanie na ListField lub EmbeddedDocumentField

  5. Jak formatować liczby w SQL