Zde jsou 2 různé způsoby
knex('item').increment('qtyonhand').where('rowid',8)
nebo
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
Zde jsou 2 různé způsoby
knex('item').increment('qtyonhand').where('rowid',8)
nebo
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)