Mysql
 sql >> Database >  >> RDS >> Mysql

Come rimuovere gli spazi bianchi iniziali e finali in un campo MySQL?

Stai cercando TRIM .

UPDATE FOO set FIELD2 = TRIM(FIELD2);

Sembra che valga la pena ricordare che TRIM può supportare più tipi di spazi bianchi, ma solo uno alla volta e utilizzerà uno spazio per impostazione predefinita. Puoi, tuttavia, annidare TRIM s.

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

Se vuoi davvero sbarazzarti di tutto lo spazio bianco in una chiamata, è meglio usare REGEXP_REPLACE insieme a [[:space:]] notazione. Ecco un esempio:

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+