Home  >  Article  >  Database  >  How to remove r n from mysql table

How to remove r n from mysql table

藏色散人
藏色散人Original
2020-10-27 10:47:052406browse

Method to remove r n in mysql table: 1. Use the "replace(field name, char(13),'')" method to remove the carriage return "r"; 2. Use "replace(field name) ,char(10),'')" method removes the newline character "n".

How to remove r n from mysql table

Recommendation: "mysql video tutorial"

It is inevitable to encounter data when displaying data If there are carriage returns and line feeds in the content, you can use the replace function to remove them:

1. Remove the carriage returns

replace(field name, char(13),'' )

2. Remove the newline character

replace(field name, char(10),'')

3. Remove the return character Car character and line break character

replace(field name, char(13) char(10),'')

ASCII code table is attached:

The above is the detailed content of How to remove r n from mysql table. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn