I executed following query and for some reason its not replacing new line character in database . It says Rows matched 1 but no change . What can be wrong ?
mysq
You can match a newline character using \n, not \\n.
\n
\\n
Code:
UPDATE aboutme SET abouttext=REPLACE(abouttext,'\n','') WHERE userid='5099a95cd944b8.22468149';