Anders Swanson
Anders Swanson

Reputation: 3961

STRING_SPLIT in Azure Synapse Analytics

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

Answers (1)

Ron Dunn
Ron Dunn

Reputation: 3078

Yes, Anders, it is available:

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

Documentation

Upvotes: 5

Related Questions