STRING_SPLIT 在 Azure Synapse Analytics 中

STRING_SPLIT in Azure Synapse Analytics

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

我正在做这个

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

并得到这个结果

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

是的,安德斯,可以使用:

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

Documentation