Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
Applies to:
Databricks SQL
Databricks Runtime
Returns the greatest value of all arguments, skipping null values.
Syntax
greatest(expr1, expr2 [, ...])
Arguments
exprN: Any expression of a comparable type with a shared least common type across allexprN.
Returns
The result type is the least common type of the arguments.
Examples
> SELECT greatest(10, 9, 2, 4, 3);
10
> DESCRIBE SELECT greatest(10, 9e2, 2.2) AS greatest;
greatest double