Я работал над решением, мне нужно вмешательство, чтобы оптимизировать решение.
Вот мой текущий сценарий:
create function SI (@Principal int, @roi int , @time int)
returns int
as
begin
declare @Principal_Amt int
--set @Principal_Amt = 10000
set @Principal_Amt = @Principal
declare @rate int
--set @rate=10
set @rate = @roi
declare @time_period int
--set @time_period = 5
set @time_period = @time
declare @Simple_Interest int
set @Simple_Interest = @Principal_Amt * @rate * @time_period / 100
return @Simple_Interest
end
select dbo.SI(10000, 8, 5)