Now I found this great string_split() function, and then I learned that the output rows might be in any order. The order is not guaranteed to match the order of the substrings in the input string.. This renders the function useless for me.
Is there maybe a workaround?
EDIT - Example:
SELECT value FROM String_Split('b,a,c', ',')
In this case I want this result in this order:
value
------
b
a
c
However, according to Microsoft, this order is not guaranteed. So how can I get exactly this result?