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

MySQL Query, rimuovi tutti gli spazi

Questo è abbastanza vicino. Supponendo:

+-------+---------+------+-----+---------+-------+

| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| d     | text    | YES  |     | NULL    |       |
| id    | int(11) | YES  |     | NULL    |       |
+-------+---------+------+-----+---------+-------+

Quindi questa query:

select x.id,x2.id,x.d,x2.d from x left join x as x2 on replace(x.d," ","") = replace(x2.d," ","") and x.id != x2.id having !(x2.id is null);

Ti dà le righe duplicate. Non riesce se hai "Helloworld" (cioè senza spazio) e non vuoi che corrisponda.