MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wert in mongodb verringern

Sie können $inc verwenden Betreiber

db.collection('users').updateOne(
  { 'userName': controller.userName },
  { '$inc': { 'wallet': -product.cost } }
)