Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

COS(x)

SQL> SQL> --COS(x): Returns the cosine of x, where x is an angle in radians. SQL> SQL> select COS(90 * 3.1415926) from dual; COS(90*3.1415926) -----------------                 1 SQL>