I have a scenario to select individual values from delimited string.
Example:
declare @Test varchar(100) = 'ABC|DEF|GHI'
Since the database is SQL Server 2008 version I cannot use split function.
Looking for the best way to split and select each values separately.