ここに2つの異なる方法があります
knex('item').increment('qtyonhand').where('rowid',8)
または
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
ここに2つの異なる方法があります
knex('item').increment('qtyonhand').where('rowid',8)
または
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)