bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL ATAN2() Function

Example

SELECT ATAN2(0.50, 1);

Definition and Usage

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

Syntax

ATAN2(
a, b
)

Parameter Values

ParameterDescription
a, bRequired. Two numeric values to calculate the arc tangent of

Technical Details

Works in:From MySQL 4.0

Previous

MySQL ATAN() Function

Next

MySQL AVG() Function