Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
I have a table, say tbl_test with data in following format.
tbl_test
_____________________
Action_Id
_____________________
123/221/4556/32
_____________________
5643/990
_____________________
676
_____________________

I want the output to split the action id by '/' and show the result like this
Action_Id
_____________________
123
_____________________
221
_____________________
4556
_____________________
32
_____________________
5643
_____________________
990
_____________________
676
_____________________


Its really simple through code but i need it from the sql query.
Posted
Updated 22-Jan-13 0:53am
v2

1 solution

Check my article below, you just have to modify the delimiter string, if you have any question please let me know.

Generating and splitting a delimited string column[^]
 
Share this answer
 
Comments
ujju.1 22-Jan-13 7:06am    
Thanx bro...this is exactly what i wanted :) cheers

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900