Knex.js - How To Update a Field With An Expression(Knex.js - 如何使用表达式更新字段)
问题描述
我们如何让 Knex 创建以下 SQL 语句:
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)
但是,为了让我们的库存应用程序在多用户环境中工作,我们需要 qtyonhand 值与当时数据库中的实际值相加或相减,而不是传递一个在更新语句被执行.
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.
推荐答案
这里有两种不同的方法
knex('item').increment('qtyonhand').where('rowid',8)
或
knex('item').update({
qtyonhand: knex.raw('?? + 1', ['qtyonhand'])
}).where('rowid',8)
这篇关于Knex.js - 如何使用表达式更新字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Knex.js - 如何使用表达式更新字段
基础教程推荐
- 在多列上分布任意行 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
