Altre risposte a questa domanda non restituiscono ciò di cui l'OP ha bisogno, restituiranno una stringa come:
test1 test2 test3 test1 test3 test4
(notare che test1
e test3
sono duplicati) mentre l'OP vuole restituire questa stringa:
test1 test2 test3 test4
il problema qui è che la stringa "test1 test3"
è duplicata e viene inserita una sola volta, ma tutte le altre sono distinte tra loro ( "test1 test2 test3"
è diversa "test1 test3"
, anche se alcuni test contenuti nell'intera stringa sono duplicati).
Quello che dobbiamo fare qui è dividere ogni stringa in righe diverse e dobbiamo prima creare una tabella numerica:
CREATE TABLE numbers (n INT);
INSERT INTO numbers VALUES
(1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
allora possiamo eseguire questa query:
SELECT
SUBSTRING_INDEX(
SUBSTRING_INDEX(tableName.categories, ' ', numbers.n),
' ',
-1) category
FROM
numbers INNER JOIN tableName
ON
LENGTH(tableName.categories)>=
LENGTH(REPLACE(tableName.categories, ' ', ''))+numbers.n-1;
e otteniamo un risultato come questo:
test1
test4
test1
test1
test2
test3
test3
test3
e quindi possiamo applicare la funzione aggregata GROUP_CONCAT, usando la clausola DISTINCT:
SELECT
GROUP_CONCAT(DISTINCT category ORDER BY category SEPARATOR ' ')
FROM (
SELECT
SUBSTRING_INDEX(SUBSTRING_INDEX(tableName.categories, ' ', numbers.n), ' ', -1) category
FROM
numbers INNER JOIN tableName
ON LENGTH(tableName.categories)>=LENGTH(REPLACE(tableName.categories, ' ', ''))+numbers.n-1
) s;
Si prega di vedere il violino qui .