Oto 2 różne sposoby
knex('item').increment('qtyonhand').where('rowid',8)
lub
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
Oto 2 różne sposoby
knex('item').increment('qtyonhand').where('rowid',8)
lub
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)