From my experiments, it does not appear to do so. If this is indeed true, what is the best method for removing line breaks? I'm currently experimenting with the parameters that TRIM accepts of the character to remove, starting with trimming \n and \r.
|
|
|
||
|
|
|
|
Trim() in MySQL only removes spaces. I don't believe there is a built-in way to remove all kinds of trailing and leading whitespace in MySQL, unless you repeatedly use Trim(). I suggest you use another language to clean up your current data and simply make sure your inputs are sanitized from now on. |
||||
|
|
|
select trim(both '\n' from FIELDNAME) from TABLE; |
||||
|
|
|
select trim(both '\r\n' from FIELDNAME) from TABLE; should work if select trim(both '\n' from FIELDNAME) from TABLE doesnt work; |
||
|
|
|
|
i could only get it to work by making the char; trim(both char(13) from fieldname) |
||
|
|
|
|
My line breaks were in the middle of the string, and I didn't have control over the source data. The following mysql command worked for me:
|
||
|
|
