Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
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: