メインコンテンツまでスキップ

sqrt function

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Returns the square root of expr.

Syntax

sqrt(expr)

Arguments

  • expr: An expression that evaluates to a numeric.

Returns

A DOUBLE.

If expr is negative the result is NaN.

Examples

SQL
> SELECT sqrt(4);
2.0

> SELECT sqrt(-4);
NaN