I need a way to parse out data that contains multiply values in the same column. The values are separated by pipe delimiters.
Any help on how to achieve this in SQL would be great.
Current Table:
Expected outcome needed:
I need a way to parse out data that contains multiply values in the same column. The values are separated by pipe delimiters.
Any help on how to achieve this in SQL would be great.
Current Table:
Expected outcome needed:
Copyright © 2021 Jogjafile Inc.


Depending on version you can use STRING_SPLIT If using a very old version of SQL you can write a UDF to do it - examples here