COS() function returns the cosine of the argument that is passed to it. : COS « Numeric Math Functions « Oracle PL / SQL






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

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

    COS(2)
----------
-.41614684

SQL>
SQL>

 








Related examples in the same category

1.COS: Returns the cosine of a value
2.COS(45 * 3.1415926)
3.COS(x): Returns the cosine of x, where x is an angle in radians