LOG(x, y):Returns the logarithm, base x, of y : LOG « Numeric Math Functions « Oracle PL / SQL






LOG(x, y):Returns the logarithm, base x, of y


SQL> --LOG(x, y):Returns the logarithm, base x, of y.
SQL>
SQL> select LOG(2, 4) from dual;

  LOG(2,4)
----------
         2

SQL>


           
       








Related examples in the same category

1.LOG: The first argument is the base, and the second is the number that you want to take the log of
2.Get the log of 8, base 2
3.LOG(2, 5)