ATAN(x):Returns the arctangent of x : ATAN « Numeric Math Functions « Oracle PL / SQL






ATAN(x):Returns the arctangent of x




SQL> --ATAN(x):Returns the arctangent of x.
SQL>
SQL> select ATAN(1) from dual;

   ATAN(1)
----------
.785398163

SQL>
           
       








Related examples in the same category

1.ATAN(-1)