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

MySQL fjerner alle mellemrum fra hele kolonnen

For at erstatte all spaces :

UPDATE `table` SET `col_name` = REPLACE(`col_name`, ' ', '')

For at fjerne alle tabs tegn :

UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\t', '' )

For at fjerne al new line tegn :

UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\n', '')

http://dev.mysql.com/doc /refman/5.0/da/string-functions.html#function_replace

For at fjerne first and last space(s) af kolonne :

UPDATE `table` SET `col_name` = TRIM(`col_name`)

http://dev.mysql.com/doc /refman/5.0/da/string-functions.html#function_trim



  1. Opret en ny tabel ved at slå to tabeller sammen med union

  2. Hvordan opretter man et bord med to eller flere fremmednøgler ved hjælp af Android Room?

  3. opret forbindelse til postgres server på google compute engine

  4. Tilslut MySQL-database fra Android