For the complete documentation index, see llms.txt. This page is also available as Markdown.

TAN

This page describes the TAN function in Lenses SQL.

TAN (numExpr)

Returns the trigonometric tangent of an expression.

Available in:

Processors
SQL Studio

Sample code:

USE `kafka`;
SELECT 
    TAN(integer), 
    integer 
FROM numbers-data
LIMIT 1;

Output:

{
  "value": {
    "TAN": "0.09014387261790552",
    "integer": 16550
  }
}

Last updated

Was this helpful?