I have a varchar column containing values similar to "1.2.3 Technical Report - Study/Services, Material and Process Test Reports", and need SELECT to return "Study/Services, Material and Process Test Reports", meaning everything to the right of the hyphen and space.
This tsql...
select right(COLUMN, charindex(' - ', COLUMN)) from MYTABLE where PK_ID = 123;
Returns... "nd Process Test Reports"
Suggestions?