| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle eval() function?
<thycotic_at_my-deja.com> wrote in message news:8bogpp$q84$1_at_nnrp1.deja.com...
> Does anybody know how to get Oracle to evaluate a string
> as an expression in PL/SQL?
> Something similar to the eval functions of VB, JavaScript and Perl.
> e.g. eval(" ")
> Not having to write a custom function would be preferable...
> TIA,
> J
You should read up on EXECUTE IMMEDIATE and SELECT <SOME EXPRESSSION> FROM DUAL; For example,
select 5+2*(3+200)/2 from dual;
Returns 208.
In a script you would use
EXECUTE IMMEDIATE 'SELECT '||<YOUR EXPRESSION> INTO <SOME VAR> FROM DUAL;
Chris
chris_at_intralect.com
Received on Mon Mar 27 2000 - 00:00:00 CST
![]() |
![]() |