我想添加百分比到我的數據庫,但它不起作用。我的代碼沒有爲數據庫添加百分比,就像它的意思
這是我在嘗試這樣做:
Use SKILLAGEITDB
go
Create procedure [spAddPercentage]
as
declare @incPercent decimal(2,0)
begin
update OrderDetails
set Value = Value * 0.1
if @incpercent < 0.1
update OrderDetails
set Value = Value * 0.1
if @incpercent > 0.1
update orderdetails
set value = value * 0.1
else
if @incpercent = 0.1
print 'finished'
end
請給我們輸入和預期的輸出。 – DVT
代碼的想法是將10%添加到orderdetails表的值列中。 –
「但它不起作用」是瘋狂無益的。 – dfundako