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 🙂
It's the second tuesday of the month, which means T-SQL Tuesday time! This month's topic…
It's time for T-SQL Tuesday again! And we're almost to number 200! T-SQL Tuesday is…
A while ago we suddenly had an error while trying to deploy one Fabric workspace…
I've uploaded the slides for my Techorama session Microsoft Fabric for Dummies and my DataGrillen…
I'm doing a small series on indexing basics for SQL Server, and on May 14th…
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB as…
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.