Condividi tramite


Funzione hypot

Si applica a: segno di spunta sì Databricks SQL segno di spunta sì Databricks Runtime

Restituisce sqrt(expr1 * expr1 + expr2 * expr2).

Sintassi

hypot(expr1, expr2)

Argomenti

  • expr1: espressione che restituisce un valore numerico.
  • expr2: espressione che restituisce un valore numerico.

Valori restituiti

A DOUBLE.

Esempi

> SELECT hypot(3, 4);
 5.0