Question : MSSQL Substring Character

I have values in a column that look like this...

ClientA_16pks-Can
ClientB_24pks
...

How do I do a query that would return the values so they look like this...
16pks-Can
24pks
...

Answer : MSSQL Substring Character

assuming that "_" is the character to split on:
1:
select substring(yourfield, charindex("_", yourfield") + 1, 300)
Open in New Window Select All
Random Solutions  
 
programming4us programming4us