Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
COT
On this page
The COT() function returns the cotangent of x, where x is given in radians, or NULL if x is invalid.
Syntax
COT (x)
Arguments
-
x: the argument
Return Type
Float or double.
Examples
SELECT COT(3.14159265359 / 2);
+----------------------------------+
| COT(3.14159265359 / 2) |
+----------------------------------+
| -0.00000000000010341155355510721 |
+----------------------------------+Last modified: