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

MySQL sostituisce tutti gli spazi bianchi con -

Questo può essere ottenuto con la seguente funzione MySQL:

SELECT REPLACE( table.field, ' ', '-' ) FROM table;

Questo dovrebbe sostituire tutti gli spazi bianchi con un -