MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

MongoDB:perbarui kamus dalam dokumen

dari situs web mongoDb lihat "Setel Bidang dalam Dokumen Tersemat"

To specify a <field> in an embedded document or in an array, use dot notation.
For the document matching the criteria _id equal to 100, the following
operation updates the make field in the details document:


db.products.update(
{ _id: 100 },
{ $set: { "details.make": "zzz" } })

dalam kasus Anda

db.collection.update(
     {_id:ObjectId("1")},
     { $set: { "occurrences.12": "3", "occurrences.17": "2" }})


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB - Tidak dapat mengkanonikalisasi kueri:BadValue operator tidak dikenal:$meta

  2. Mongoimport file csv dengan string _id dan upsert

  3. Cara Membuat Indeks Case-Insensitive di MongoDB

  4. MongoDB C# - Mendapatkan BsonDocument untuk Elemen yang tidak ada

  5. Bagaimana saya bisa menggabungkan beberapa koleksi menjadi satu koleksi menggunakan $lookup mongodb atau nodejs mongodb?