Skip to main content

ATAN (SQL)

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

Synopsis

{fn ATAN(numeric-expression)}

Description

ATAN takes any numeric value and returns the inverse (arc) of the tangent of an angle as a floating point number. ATAN returns NULL if passed a NULL value. ATAN treats nonnumeric strings, including the empty string (''), as the numeric value 0.

ATAN returns a value with a precision of 36 and a scale of 18.

ATAN 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.

Arguments

numeric-expression

A numeric expression. This is the tangent of the angle.

ATAN returns either the NUMERIC or DOUBLE data type. If numeric-expression is data type DOUBLE, ATAN returns DOUBLE; otherwise, it returns NUMERIC.

Example

The following example shows the effect of ATAN:

SELECT {fn ATAN(0.52)} AS ArcTangent 

returns 0.47951929199...

See Also

FeedbackOpens in a new tab