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 think that it contains \n, but it has \r.
\n
\r
update [Table] set [column]=replace(convert([column] using utf8) ,'\r','');
In your case:
update aboutme set abouttext=replace(convert(abouttext using utf8) ,'\r','');