Home > Database > Mysql Tutorial > body text

How to remove r n from mysql table

藏色散人
Release: 2020-10-29 16:53:54
Original
2403 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!