I have a formula (e.g. :a*:b) as a record in a table. In my stored procedure, I retrieve this formula and replace ':a' and ':b" with the appropriate values. Now I want to insert the result of this expression (a*b) into a table.
I have tried a few approaches and they result in the expression being inserted (e.g. 300*12) and not the result of the expression (e.g. 3600) being inserted.
Any ideas how to fix this?
Thanks in advance
I have tried a few approaches and they result in the expression being inserted (e.g. 300*12) and not the result of the expression (e.g. 3600) being inserted.
Any ideas how to fix this?
Thanks in advance