Viewing 3 posts - 1 through 3 (of 3 total)
Hello Vladan,
thx very much for your answer
it helped me a lot already
there is only one question i am having,
i did this with a left join because i was interested in...
September 6, 2007 at 2:19 pm
SELECT substring(auxdata,
charindex('TAGmanager_nameTAG',auxdata),
(charindex('TAG/managerTAG',auxdata) - charindex('TAGmanager_nameTAG',auxdata)))
FROM workitem
where (id='53')
This thing gives me following result:
TAGmanager_nameTAG MR XXXX TAG/manager_nameTAG
But what i do need is just the info between the 2 tags here above
Thx
March 22, 2007 at 3:26 pm
hi,
i have tried:
SELECT (substring(auxdata,charindex('',auxdata),
(charindex('',auxdata) - charindex('',auxdata)))
FROM workitem
but he gives me errors..
i just need a return value as a string
March 22, 2007 at 2:48 pm
Viewing 3 posts - 1 through 3 (of 3 total)