ACOS
This page describes the ACOS function in Lenses SQL.
ACOS(numExpr)
Returns the trigonometric arc cosine of an expression.
Available in:
Processors
SQL Studio
✓
✓
Sample code:
USE `kafka`;
SELECT ACOS(extra)
FROM nyc-yellow-taxi-trip
LIMIT 1;
Output:
{
"value": {
"ACOS": "1.0471975511965979"
}
}
Last updated
Was this helpful?