C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL SIN() FunctionThe sin() is a Math function of MySQL. This function is used to get the sine value of the given number. Syntax
 select sin(number); Parameter:
 number: It is the number for getting sine. Return:This function returns the sine value of the given number. Example 1
 Select sin(11); Output:   Example 2Select sin(-2.11); Output:   
Next TopicMySQL Math
 |