ATAN (TSQL Function)

Returns the arctangent, or inverse tangent, of a number.

Syntax

ATAN ( float_expression )

Arguments

float_expression
is an expression of type float.

Return Types

Returns float.

Examples

PRINT ATAN(123);

The result is:

1.5626664246149526
RSQL, a simple alternative to Microsoft SQL Server