Possible Duplicate:
T-SQL: Opposite to string concatenation - how to split string into multiple records
Split Function equivalent in tsql?
How Do I Split a Delimited String in SQL Server Without Creating a Function?
Let's say I have a varchar with the following value:
'1:2:3:4:5'
I would like to write a select statement, with the result of:
1
2
3
4
5
Is this possible? Thanks.