to_csv
函式
適用於: Databricks SQL Databricks Runtime
傳回具有指定結構值的 CSV 字串。
語法
to_csv(expr [, options] )
引數
expr
:STRUCT 表達式。options
:選擇性的 MAP 常值運算式,其索引鍵和值為 STRING。
傳回
字串。
如需可能options
的詳細數據,請參閱 from_csv 函式。
範例
> SELECT to_csv(named_struct('a', 1, 'b', 2));
1,2
> SELECT to_csv(named_struct('time', to_timestamp('2015-08-26', 'yyyy-MM-dd')), map('timestampFormat', 'dd/MM/yyyy'));
26/08/2015