October 19, 2009 at 12:07 am
I have a table looks like this.
CREATE TABLE #TMP (ID INT, TERM VARCHAR(100))
GO
INSERT #TMP
SELECT 1,'012345'
UNION
SELECT 2,'012345/655432'
UNION
SELECT 3,'534443'
UNION
SELECT 4,'987654/765432/324544'
and, i want to see the results
IDTERM
1012345
2012345
2655432
3534443
4987654
4765432
4324544
Please help me with this query
Thanks in advance.
October 19, 2009 at 1:15 am
October 19, 2009 at 2:25 am
Thank you Dave. This is what i need. I also need this solution to work with SQL 2000. Is there any way?
Thanks
October 19, 2009 at 2:31 am
There was a link in that document
October 19, 2009 at 2:35 am
Thanks dave. There is another link. I just overlooked it. Thanks again.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply