SELECT a.[PREMISES],a.[Class] FROM [Legacy].[dbo].[MyTables] as a;
Above query returns :
Can you tell me how to remove 210, and 211, from the query column a.[Class] ?
Note : I just gave an example.I need to have a generic solution which will apply for all the rows of that a.[Class] column.
Note 2 : Format of the Class column is like this.numeric then , after that string.I need to remove first 2 parts.Need to keep only the string part.

SELECT a.[PREMISES], SUBSTRING(a.[Class], 5, 100) FROM [Legacy].[dbo].[MyTables] as a;numericthen,after thatstring