In SQL Server, if I have an example string of 'abc||DATE||Lorem ipsum||NUMBER||dolor sit amet, elit.||CONTACT NAME||:Nullam et odio laoreet', any ideas on how I would extract all of the strings between my '||' delimiter? My expected result set would be:
DATE
NUMBER
CONTACT NAME
I would also be able to work with a single, comma delimited result of: DATE,NUMBER,CONTACT NAME. Also, there could be any number of these substrings that I would need to extract. My sample above only has three. Thanks for any help you can provide!