Answers for "remove space in mysql"

SQL
1

mysql trim spaces

`field` = TRIM(`field`);
Posted by: Guest on June-04-2020
0

remove space in mysql

UPDATE `table` SET `col_name` = REPLACE(`col_name`, ' ', '')
Posted by: Guest on January-28-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language