I have the following string in sql server where the length is variable
Declare @string Varchar(max) = 'abjrc_chdc_hyku_abv_ytr_DCD_HTR_TBF'
How could I select the characters after the 4th '_' in this string? (expected result: ytr_DCD_HTR_TBF)
Also how to select only the 4th part of the string (result: abv)
Any Ideas?
Thanks