I need to remove multi spaces, tab, new line, carriage return, form feed or vertical tab from MySQL table's field.
Here How to remove duplicate white spaces in string using Java?
yourString = yourString.replaceAll("\\s+", " ");
I found the result what I have expected but in JAVA. I need the same result in MySQL.
Also I need to replace all single quotes to double quotes.
How to do it .