Compute the cotangent of a given number.
| SELECT COT(6); |
The COT() function yields the cotangent value of a given number.
| COT(number) |
|
Parameter |
Description |
|
number |
Mandatory: A numerical value is necessary. If the number is 0, an error or NULL is returned. |
| Works in: | From MySQL 4.0 |
Calculate the cotangent of a given number.
| SELECT COT(–2); |