I have a requirement wherein I need to convert a long list of text (separated by comma) into multiple row result-set.
This would then be used in an outer join with some other table.
Problem string (which is not in a table but an external string in an excel sheet):
'A', 'B', 'C', ....
Expected output of query
Output
-----
'A'
'B'
'C'
I am trying to avoid using temporary tables while achieving above solution.
Kindly suggest if it is possible.