how to remove characters from string in mysql

Solutions on MaxInterview for how to remove characters from string in mysql by the best coders in the world

showing results for - "how to remove characters from string in mysql"
Jan
08 Sep 2018
1#query 
2UPDATE tableName SET columnName = REPLACE(columnName, 'charactersToBeReplaced', 'charactersToBeReplacedWith');
3
4#you can use like this
5UPDATE student_enroll_data SET student_name = REPLACE(student_name, '-gyg-', '');
6