MySQL ATAN2 Function

Example

Return the arc tangent of two values:

SELECT ATAN2(0.50, 1);

Definition and Usage

The ATAN2() function returns the arc tangent of two numbers.

Syntax

ATAN2(a, b)

Continue reading MySQL ATAN2 Function