sql >> データベース >  >> NoSQL >> MongoDB

mongodbとnodejsのタイプ番号のフィールドをデクリメントします

    $inc を使用します オペレーター。

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

    更新:

    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. MongoDBの日付(moment.js)を比較します

    2. MongoDB:ドキュメントの辞書を更新

    3. MongoDB $ substrCP

    4. Mongodbのタイムスタンプは非常に不正確です-マングース