Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

ATAN2(x, y)

SQL> SQL> --ATAN2(x, y):Returns the arctangent of x and y. SQL> SQL> select ATAN2(1, -1) from dual; ATAN2(1,-1) -----------  2.35619449 SQL>