Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目我在我的项目中遇到问题.........
问题是当我通过发出或交付的数量时,我想增加或减少我的 sql 数量字段中的数量,即...最初,当我摄入数量为 10 的产品时,提交的数量中的数量为 1,然后自动它应该将数量更新为 10+1=11,所以它必须更新为 11,如果我删除 1 个数量,它应该更新为 0........
如何在jsp中编写代码............
请帮忙
如果您想要INCREMENT产品的价值,请使用下面的查询
INCREMENT
UPDATE tableName SET columnName = columnName + toadd
和DECREMENT
DECREMENT
UPDATE tableName SET columnName = columnName - tosubtract
所以申请你的情况,
UPDATE tableName SET quantity = quantity + 10 or UPDATE tableName SET quantity = quantity - 1