Sql Remove First Character From String

[Solved] Sql Remove First Character From String | Vb - Code Explorer | yomemimo.com
Question : sql remove first character from string

Answered by : vastemonde

UPDATE MyTable
SET MyColumn = RIGHT(MyColumn, LEN(MyColumn) - 1);

Source : | Last Update : Sun, 22 Aug 21

Answers related to sql remove first character from string

Code Explorer Popular Question For Vb