|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, February 14, 2013 5:26 AM
Points: 1,
Visits: 5
|
|
HI,
I need to evaluate a formula in sql server (eg) ((a+b)*c)/d, where this formula will be stored inside a string value like
DECLARE @strFormula VARCHAR(250) SET @strFormula = ((a+b)*c)/d
And now a, b, c and d all will have some values like 15.25, 20, 22.50, 25 respectively.
pls help me with how to evaluate this
@mnyFinalOutput = the result of the executed formula (i.e) @strFormula with a,b,c,d values replaced.
|
|
|
|