C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL ATAN2() FunctionThe atan2() is a Math function of MySQL. This function is used to get the arc tangent of the given number n and m. Syntaxselect atan(n, m); Parameters:N, m: two numbers to get arc tangent. ReturnsThis function returns the arc tangent of the given number n and m. Example 1Select atan(-0.3, 5); Output: Example 2Select atan(-0.34, 5); Output:
Next TopicMySQL Math
|