SQRT()

Scalar. Returns the square root of a given value.

Syntax

SQRT( value )
Data Types

Return

value

Float

Float

Example

The following example returns the square root of the value in the velocity column:

INSERT INTO OutStream
SELECT SQRT(Devices.velocity)
FROM Devices;