Mysql
 sql >> Base de données >  >> RDS >> Mysql

Knex.js - Comment mettre à jour un champ avec une expression

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)