bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL SQRT() Function

Concept visual

MySQL SQRT() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Return the square root of a number:

SELECT SQRT(64);

Definition and Usage

The SQRT() function returns the square root of a number.

Syntax

Sqrt(

number )

Parameter Values

Parameter

Description number

Required. A number to calculate the square root of. Must be greater than 0

Technical Details

Works in:

From MySQL 4.0

More Examples

Example

Return the square root of a number:

SELECT SQRT(13);

Previous

❮ MySQL Functions

Next

Previous

MySQL SIN() Function

Next

MySQL SUM() Function