I am trying to remove a carriage return in a MySQL Text type data field using the Update command. I've tried the following and when I export a record and view in a text editor (image attached) I still see this character? What should I use to remove this?
update fort_property_res SET property_information = TRIM(TRAILING '\n' FROM property_information
update fort_property_res SET property_information = TRIM(TRAILING '\r' FROM property_information
update fort_property_res SET property_information = TRIM(TRAILING '\t' FROM property_information

TRIM(TRAILING '\r\n\t' FROM property_information )do?...\t\r\n\t\r\nwill be...\t\r\nif you do it separately, but without them if you do it in one go with a characters list. Also, it may be some other whitespace: what does aHEX()of that field end in?