2012-11-15 54 views
1

現有的價值,我有一個名爲產品表如何將值添加到使用SQL查詢

產品

Quantity 
5 

我需要通過例如「5 + 3」

任意值更新量需要輸出像下面

Quantity 
8 

我如何寫這個查詢?

+0

更新產品設置數量=數量+ 3? (添加where子句) – jbl

回答

18
update products 
set quantity = quantity + 3 
1
declare @table table(id int, quantity int) 
insert into @table values(1, 5) 

update @table 
set quantity = quantity + 3 
output inserted.quantity 

假設你其實想輸出的值。不要忘記任何可能需要的條款

相關問題