Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

ATAN

Example

Calculate and return the arctangent (inverse tangent) of a number.

SELECT ATAN(2.5);

Definition and Usage

The ATAN() function computes the arctangent (inverse tangent) of a number.

Syntax

ATAN(number)

Parameter Values

Parameter

Description

number

Required. A numerical value for which the arc cosine will be calculated.

Technical Details

Works in:

Available in SQL Server from 2008 onward, as well as in Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse.

More Examples

Example

Compute and return the arctangent (inverse tangent) of a specified number.

SELECT ATAN(-45.01);