Numeric Math Functions Oracle PLSQL

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