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 COT() function

COT() function

MySQL COT() returns the cotangent of a number.

Syntax:

COT(N);

Argument:

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

Syntax Diagram:

MySQL COT() Function - Syntax Diagram

MySQL Version: 5.6


Pictorial presentation of MySQL COT() function

pictorial presentation of MySQL COT() function

Example of MySQL COT() function

Code:

SELECT COT(7);

Explanation:

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

Sample Output:

mysql> SELECT COT(7);
+------------------+
| COT(7)           |
+------------------+
| 1.14751542240514 | 
+------------------+
1 row in set (0.01 sec)

All Mathematical Functions

MySQL Mathematical Functions, slide presentation

Previous:COS()
Next: CRC32()