Funzione string

Si applica a: segno di spunta sì Databricks SQL segno di spunta sì 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 a STRING.

Valori restituiti

Il risultato corrisponde al tipo di expr.

Esempi

> SELECT string(5);
 5
> SELECT string(current_date);
 2021-04-01