This page describes the SQRT function in Lenses SQL.
Last updated 1 month ago
Social
Company
Resources
2024 © Lenses.io Ltd. Apache, Apache Kafka, Kafka and associated open source project names are trademarks of the Apache Software Foundation.
SQRT(numExpr)
Returns the square root of numExpr.
Available in:
Sample code:
USE `kafka`; SELECT SQRT(integer), integer FROM numbers-data LIMIT 1;
Output:
{ "value": { "SQRT": "128.64680330268607", "integer": 16550 } }
✓