Funzione bigint
Si applica a: Databricks SQL Databricks Runtime
Esegue il cast del valore expr
in BIGINT. Questa funzione è un sinonimo di CAST(expr AS BIGINT)
. Per informazioni dettagliate, vedere cast function (Funzione cast).
Sintassi
bigint(expr)
Argomenti
expr
: qualsiasi espressione di cui è possibile eseguire il cast a BIGINT.
Valori restituiti
UN BIGINT.
Esempi
> SELECT bigint(current_timestamp);
1616168320
> SELECT bigint('5');
5