Remove first string from field in mysql

I"m trying to remove the first two characters for each row in mysql
Deepak Sharma
Asked 17-03-2024
105

Answer (1)
here is the code for remove first character from string of column data; UPDATE table1 SET column1 = SUBSTRING_INDEX(column1 , "-",-1);
Ankur Rajput
Asked 09-11-2019
45 Likes
Comments
Write comment

Submit your answer