Funzione string
Si applica a: Databricks SQL Databricks Runtime
Esegue il cast del valore expr
su STRING
. Questa funzione è un sinonimo di cast(expr AS STRING)
. Per informazioni dettagliate, vedere cast function (Funzione cast).
Sintassi
string(expr)
Argomenti
expr
: espressione di cui è possibile eseguire il cast aSTRING
.
Valori restituiti
Il risultato corrisponde al tipo di expr
.
Esempi
> SELECT string(5);
5
> SELECT string(current_date);
2021-04-01