Knex.js - How To Update a Field With An Expression

依然范特西╮ 提交于 2019-12-19 19:39:11

问题


How do we get Knex to create the following SQL statement:

UPDATE item SET qtyonhand = qtyonhand + 1 WHERE rowid = 8

We're currently using the following code:

knex('item')
    .transacting(trx)
    .update({qtyonhand: 10})
    .where('rowid', 8)

However, in order for our inventory application to work in a multi-user environment we need the qtyonhand value to add or subtract with what's actually in the database at that moment rather than passing a value that may be stale by the time the update statement is executed.


回答1:


Here are 2 different ways

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

or

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


来源:https://stackoverflow.com/questions/42212497/knex-js-how-to-update-a-field-with-an-expression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!