This tutorial explains how to use the MySQL ATAN2 function with syntax and examples.
The MySQL ATAN2 function returns the arc tangent of n and m.
The syntax for the ATAN2 function in MySQL is:
ATAN2( n, m )
Values used to calculate the arc tangent of two values.
The ATAN2 function can be used in the following versions of MySQL:
Let's look at some MySQL ATAN2 function examples and explore how to use the ATAN2 function in MySQL.
For example:
mysql> SELECT ATAN2(0.75, 1);
Output: 0.6435011087932844
mysql> SELECT ATAN2(-0.9, 2);
Output: -0.4228539261329407
mysql> SELECT ATAN2(PI(), 2);
Output: 1.0038848218538872