Mysql
 sql >> Database >  >> RDS >> Mysql

Knex.js - Come aggiornare un campo con un'espressione

Ecco 2 modi diversi

knex('item').increment('qtyonhand').where('rowid',8)

o

knex('item').update({
  qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)