I have column TrackNo with values like
8070444981-010023-013123-INBBTC-C
601724-072923-078923-INAAAX-B
I need to get the values from the 3rd hypen example
-INBBTC-C
-INAAAX-B
I tried substring,charindex but it is not working for both the scenarios
select substring( Trackno,
charindex('-', TrackNo , (charindex('-', TrackNo , 1))
+charindex('-', TrackNo, (charindex('-', TrackNo , 1))+1)),20)
from table
Please try the following solution based on XML and XQuery.
The XPath predicate
/root/r[position() ge 4]
is doing the job for your scenario:SQL
Output