TAN
Synopsis
{fn TAN(float-expression)}
Arguments
Argument | Description |
---|---|
float-expression | An expression of type FLOAT. This is an angle expressed in radians. |
Description
TAN takes any numeric value and returns its tangent. TAN returns NULL if passed a NULL value. TAN treats nonnumeric strings as the numeric value 0.
TAN returns a value of data type FLOAT with a precision of 36 and a scale of 18.
TAN can only be used as an ODBC scalar function (with the curly brace syntax).
You can use the DEGREES function to convert radians to degrees. You can use the RADIANS function to convert degrees to radians.
Example
The following example shows the effect of TAN.
SELECT {fn TAN(0.52)} AS Tangent
returns 0.572561.