LOG function

LOG(x, y) returns the logarithm, base x, of y. In the following example, we are taking the log of 2, base value.


SQL> select log(2,8) from dual;

  LOG(2,8)
----------
         3

SQL>
Home »
Oracle »
Numeric Functions » 

Related: