Voici 2 façons différentes
knex('item').increment('qtyonhand').where('rowid',8)
ou
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
Voici 2 façons différentes
knex('item').increment('qtyonhand').where('rowid',8)
ou
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)