C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL TAN() FunctionThe tan() is a Math function of MySQL. This function is used to get the tangent of the given number. Syntaxselect tan(number); Parameter:number: It is the value for getting tangent. Returns:This function returns the tangent of a number. Example 1Select tan(32); Output: Example 2Select tan(-3); Output:
Next TopicMySQL Math
|