Curriculum
Course: MYSQL
Login

Curriculum

MYSQL

MySQL References

0/140
Text lesson

ATAN

Example

Provide the arctangent of a number.

SELECT ATAN(2.5); 

Definition and Usage

The ATAN() function calculates the arctangent of one or two numbers.

Syntax

ATAN(number)

OR:

ATAN(a, b)

Parameter Values

Parameter

Description

number

Could you provide more context or specify what you’d like to rephrase?

a, b

Reword: “Two numerical values for computing the arctangent of”

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Calculate the arctangent of two values and return the result.

SELECT ATAN(0.82);