Hi,

I want to calculate some numericals on a stored formula in the table. The scenario is as follows:

Declare
ll_val1 number(5) := 25;
ll_val2 number(5) := 50;
ll_formula varchar2(100) := 'll_val1 + ll_val2';

Begin
/* Pls help me writing a script which will print a output called 75 on executing the ll_formula variable i.e., i want to execute the formula variable(ll_formula) and display the result as '75' */
print the value 75 was per the variable.
End ;