Reputation: 3961
Is STRING_SPLIT
supported in Azure Synapse's T-SQL? If so, how to use it in a pre-existing SQL Pool?
I'm doing this
select STRING_SPLIT('one,two,three',',')
and getting this as a result
'STRING_SPLIT' is not a recognized built-in function name.
Upvotes: 0
Views: 6592
Reputation: 3078
Yes, Anders, it is available:
select value from string_split ('one,two,three',',')
Upvotes: 5