How to remove new line characters from data rows in mysql?

MysqlTrim

Mysql Problem Overview


I can loop through all of the rows in a php script and do

UPDATE mytable SET title = "'.trim($row['title']).'" where id = "'.$row['id'].'";

and trim can remove \n

But I was just wondering if something same could be done in one query?

 update mytable SET title = TRIM(title, '\n') where 1=1

will it work? I can then just execute this query without requiring to loop through!

thanks

(PS: I could test it but table is quite large and dont want to mess with data, so just thought if you have tested something like this before)

Mysql Solutions


Solution 1 - Mysql

UPDATE test SET log = REPLACE(REPLACE(log, '\r', ''), '\n', '');

worked for me.

while its similar, it'll also get rid of \r\n

http://lists.mysql.com/mysql/182689

Solution 2 - Mysql

your syntax is wrong:

update mytable SET title = TRIM(TRAILING '\n' FROM title)

Addition:

If the newline character is at the start of the field:

update mytable SET title = TRIM(LEADING '\n' FROM title)

Solution 3 - Mysql

  1. Replace all new line and tab characters with spaces.

  2. Remove all leading and trailing spaces.

    UPDATE mytable SET title = TRIM(REPLACE(REPLACE(REPLACE(title, '\n', ' '), '\r', ' '), '\t', ' '));

Solution 4 - Mysql

update mytable set title=trim(replace(REPLACE(title,CHAR(13),''),CHAR(10),''));

Above is working for fine.

Solution 5 - Mysql

Removes trailing returns when importing from Excel. When you execute this, you may receive an error that there is no WHERE; ignore and execute.

UPDATE table_name SET col_name = TRIM(TRAILING '\r' FROM col_name)

Solution 6 - Mysql

UPDATE mytable SET title=TRIM(REPLACE(REPLACE(title, "\n", ""), "\t", ""));

Solution 7 - Mysql

Playing with above answers, this one works for me

REPLACE(REPLACE(column_name , '\n', ''), '\r', '')

Solution 8 - Mysql

My 2 cents.

To get rid of my \n's I needed to do a \\n. Hope that helps someone.

update mytable SET title = TRIM(TRAILING '\\n' FROM title)

Solution 9 - Mysql

For new line characters

UPDATE table_name SET field_name = TRIM(TRAILING '\n' FROM field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\r' FROM field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\r\n' FROM field_name);

For all white space characters

UPDATE table_name SET field_name = TRIM(field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\n' FROM field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\r' FROM field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\r\n' FROM field_name);
UPDATE table_name SET field_name = TRIM(TRAILING '\t' FROM field_name);

Read more: MySQL TRIM Function

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTigerTigerView Question on Stackoverflow
Solution 1 - MysqlŁukasz RysiakView Answer on Stackoverflow
Solution 2 - MysqllongneckView Answer on Stackoverflow
Solution 3 - MysqlGeoView Answer on Stackoverflow
Solution 4 - MysqlPhaneendra KasalanatiView Answer on Stackoverflow
Solution 5 - MysqlUlysnepView Answer on Stackoverflow
Solution 6 - MysqlRisseView Answer on Stackoverflow
Solution 7 - Mysqljay_mzirayView Answer on Stackoverflow
Solution 8 - MysqlDarshan MontgomeryView Answer on Stackoverflow
Solution 9 - MysqlLue InubashiriView Answer on Stackoverflow