Azure Synapse Analytics中的STRING_SPLIT

问题描述

Azure Synapse的T-sql是否支持STRING_SPLIT?如果是这样,如何在预先存在的sql Pool中使用它?

我正在这样做

select STRING_SPLIT('one,two,three',',')

并将其作为结果

'STRING_SPLIT' is not a recognized built-in function name.

解决方法

是的,Anders,它可用:

select value from string_split ('one,two,three',',')

Documentation