Home  >  Article  >  Database  >  How to wrap new lines in mysql?

How to wrap new lines in mysql?

little bottle
little bottleOriginal
2019-05-09 16:50:2518030browse

In the process of mysql operation, do you have such doubts? Don't know how to do line breaks in mysql. In fact, line breaks can be easily achieved by entering the line break command statement in mysql.

How to wrap new lines in mysql?

Newline statement:

UPDATE 表名 SET  字段= REPLACE(REPLACE(字段, CHAR(10), ''), CHAR(13), '');

Note:

  • ##CHAR( 10): Line feed character

  • CHAR(13): Carriage return character

The above is the detailed content of How to wrap new lines in mysql?. 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