I am using MySQL. My data has a column called text
, which uses the TEXT data type.
There are several newlines for each record in this column. I want to
The previous suggestions did not work for me. It only seems to work if I had actually typed the \r
and \n
text in as text. I found the following to work well -
replace(replace([MyFieldName],char(13),''),char(10),'')
I also created a calculated field in my table which uses this formula. That way I can just reference that field in areas of my program that were breaking with the original field contents.