Hi @kkran
There are different ways to remove the first character,some of which have been given by experts.
You can find the used string functions at this link for more details.
As a complement, you can also use the Right function,like this:
Update #Sample
Set MyColumn = RIGHT(MyColumn, LEN(MyColumn) - 1)
Where Left(MyColumn, 1) In ('S', 'T');
Best regards,
LiHong
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.