Re: [ADMIN] [SQL] Anti log in PostgreSQL

2003-12-26 Thread Sai Hertz And Control Systems
Dear Martin Marques and other kind people out their , In mathematics I would have written it something like A = antilog (3·3234) = 2144 As I can understand, this is a 10 base log, so that what you want is 10^(3.3234)? Though antilog did not solve my problem the link below helped me to p

Re: [ADMIN] [SQL] Anti log in PostgreSQL

2003-12-26 Thread David F. Skoll
On Sat, 27 Dec 2003, Sai Hertz And Control Systems wrote: > select exp(3.3234) as a2144 > Gives me > 27.754555808589792 Right. That's e^3.3234 Try: select 10^3.3234; or: select dpow(10, 3.3234); or even: select exp(3.3234 * ln(10.0)); -- David. ---

Re: [ADMIN] [SQL] Anti log in PostgreSQL

2003-12-26 Thread Sai Hertz And Control Systems
Dear Martin Marques , In mathematics I would have written it something like A = antilog (3·3234) = 2144 As I can understand, this is a 10 base log, so that what you want is 10^(3.3234)? For that you have the exponential operator ^. Nope select exp(3.3234) as a2144 Gives me 27.7545558085