SQRT(X)
Returns the square root of X. If X is negative, NULL is returned.
SELECT SQRT(4); +---------+ | SQRT(4) | +---------+ | 2 | +---------+ SELECT SQRT(20); +------------------+ | SQRT(20) | +------------------+ | 4.47213595499958 | +------------------+ SELECT SQRT(-16); +-----------+ | SQRT(-16) | +-----------+ | NULL | +-----------+ SELECT SQRT(1764); +------------+ | SQRT(1764) | +------------+ | 42 | +------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/sqrt/