C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL SQRT() FunctionThe sqrt() is a Math function of MySQL. This function is used to get the square root of the given number. Syntax
select sqrt(number); Parameter:
number: It is the number for getting sqrt. Example 1Select sqrt(02); Output:
Example 2
Select sqrt(-2); Output:
Example 3Select sqrt(32); Output:
Next TopicMySQL Math
|