Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

MySQL COS() function

COS() function

MySQL COS() returns the cosine of a number where the number is given in radians.

Syntax:

COS(N);

Argument:

Name Description
N A number whose cosine value is to be retrieved.

Syntax Diagram:

MySQL COS() Function - Syntax Diagram

MySQL Version: 5.6


Example

Code:

SELECT COS(1);

Explanation:

The above MySQL statement will return the cosine of the number specified as an argument.

Sample Output:

mysql> SELECT COS(1);
+------------------+
| COS(1)           |
+------------------+
| 0.54030230586814 | 
+------------------+
1 row in set (0.01 sec)

All Mathematical Functions

MySQL Mathematical Functions, slide presentation

Previous:CONV()
Next: COT()