The function TAN returns the trigonometric tangent of the radians number expression.
SQL Syntax:
|
|
TAN( number ) |
Number:
|
|
Any numeric expression. |
Escape Syntax:
|
|
{fn TAN( number )} |
Return Type:
|
|
FLOAT |
|
|
|
Examples:
SELECT TAN(1.0), {fn tan(0.0)}
see also:
SQL Numeric Functions
SIN
COS
|