In SQLite, the SQRT()
function calculates the square root of a number. It returns the value which, when multiplied by itself, equals the input number.
Note that SQLite returns NULL
if you try to calculate the square root of a negative number, NULL
, or a value of the wrong type.