sql >> Base de Datos >  >> RDS >> Mysql

Knex.js - Cómo actualizar un campo con una expresión

Aquí hay 2 formas diferentes

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

o

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