C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL ATAN() FunctionThe atan() is a Math function of MySQL. This function is used to get the arc tangent of the given number. Syntaxselect atan(num); Parameters:Num: It is the number to get arc tangent. ReturnsThis function returns the arc tangent of the given number. Example 1Select atan(0.45); Output: Example 2Select atan(0.4, 5); Output:
Next TopicMySQL Math
|