Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

COS() function returns the cosine of the numeric expression argument that is passed to it

SQL> Syntax: COS(<numeric expression>) SQL> SQL> SQL> SELECT COS(2) from dual;     COS(2) ---------- -.41614684 SQL> SQL>