Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

TAN

A scalar numeric function that returns the tangent, in radians, of an angle.

Synopsis

{fn TAN(float-expression)}

Arguments

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.

See Also

FeedbackOpens in a new tab