A new (optional) argument has been added to STRING_SPLIT: enable_ordinal. Setting it to 1 will add an output column with the 1-based index of each item of the array. Nice. This is great if you want to preserve the order of the items. Let’s illustrate with an example:
SELECT *
FROM STRING_SPLIT('Hello,World,this,is,an,array',',');
This returns the following result:
As you can see, the order is the same as in the input string, but this is not guaranteed! It’s exactly the same as relying on indexes for your sorted output: not explicitly guaranteed until you use an ORDER BY. The tricky thing with this function is, there’s nothing to sort on if you explicitly want to reserve the order. To work around this, I typically used a user-defined function written by Jeff Moden, as explained in this infamous article about tally tables: Tally OH! An Improved SQL 8K “CSV Splitter” Function. Jeff’s function returns an ordinal column and thus you can sort the output.
Microsoft has now added such an ordinal column as well to the built-in STRING_SPLIT function. Hoozah.
SELECT *
FROM STRING_SPLIT('Hello,World,this,is,an,array',',',1)
ORDER BY ordinal;
The sad part is that this change is for the moment only available in the Azure databases (Azure SQL DB, Azure Managed Instance and Azure Synapse Analytics Serverless).
Aaron Bertrand was the first to break the news (at least that I’m aware of) in his blog post 2021 : The Year of the Exodus, but since it was kind of a footnote and I thought it deserved it’s own post 🙂
The Power BI Enhanced Report Format (PBIR) will soon become the default, and that's a…
Quite a long title for a short blog post :)While deploying a DACPAC (from a…
Yes, you're reading that right, we're going to download a report that cannot be downloaded.…
You can find all the session materials for the presentation "Indexing for Dummies" that was…
The slidedeck and the SQL scripts for the session Indexing for Dummies can be found…
You can find the slides of my session on the €100 DWH in Azure on…
View Comments
Thanks for the honorable mention, Koen.
The really sad part about all of this is them originally releasing the function without this feature. It should have been included since day 1.