Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie entferne ich führende und nachgestellte Leerzeichen in einem MySQL-Feld?

Sie suchen nach TRIM .

UPDATE FOO set FIELD2 = TRIM(FIELD2);

Es scheint erwähnenswert zu sein, dass TRIM mehrere Arten von Leerzeichen unterstützen kann, aber nur jeweils eine, und es wird standardmäßig ein Leerzeichen verwenden. Sie können jedoch TRIM verschachteln s.

 TRIM(BOTH ' ' FROM TRIM(BOTH '\n' FROM column))

Wenn Sie wirklich alle loswerden wollen Leerzeichen in einem Aufruf, verwenden Sie besser REGEXP_REPLACE zusammen mit dem [[:space:]] Notation. Hier ist ein Beispiel:

SELECT 
    -- using concat to show that the whitespace is actually removed.
    CONCAT(
         '+', 
         REGEXP_REPLACE(
             '    ha ppy    ', 
             -- This regexp matches 1 or more spaces at the beginning with ^[[:space:]]+
             -- And 1 or more spaces at the end with [[:space:]]+$
             -- By grouping them with `()` and splitting them with the `|`
             -- we match all of the expected values.
             '(^[[:space:]]+|[[:space:]]+$)', 

             -- Replace the above with nothing
             ''
         ), 
         '+') 
    as my_example;
-- outputs +ha ppy+