Answers for "mysql remove bad character from all fields"

SQL
0

mysql remove bad character from all fields

#replace a bad character with somethine else you want
UPDATE myTable SET myColumn = REPLACE(myColumn, "'", "'")
Posted by: Guest on October-12-2021

Code answers related to "mysql remove bad character from all fields"

Code answers related to "SQL"

Browse Popular Code Answers by Language