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

Mengurangi bidang nomor tipe di mongodb dan nodejs

Gunakan $inc operator.

 db.yourcollection.update({ /* find options */ }, { $inc: {piecesLeft : -1 } });

Diperbarui:

db.yourcollection.update({
    _id: '572f16440a0dbb1e0cc02201', // Find updated item e.g. by _id
    piecesLeft: { $gt: 0 } // Update only if piecesLeft > 0
}, {
    $inc: {
        piecesLeft: -1 // Increment by -1 
    }
});



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Memfilter array yang disematkan di MongoDB

  2. Luwak:populate() / DBref atau duplikasi data?

  3. Melewati data MongoDB ke .ejs dengan node.js

  4. Dokumen tersemat bagian atas Mongodb

  5. Bagaimana kami bisa memberikan kueri untuk dokumen yang disematkan melalui driver java?