U moet beide kolommen samenvoegen en vervolgens filteren op verschillende waarden:
select distinct T.from_to from
( select `from` as from_to
from messages
union
select `to` as from_to
from messages
) T
als je echt alles in een komma aparte string nodig hebt, gebruik dan GROUP_CONCAT([DISTINCT] aggregatiefunctie.
BEWERKT :
Markeer als oplossing Gerald antwoord. Na het testen van de union-operator en de mysql union-operatordocumentatie opnieuw lezen , standaard, mysql-filter voor verschillende waarden:
mysql> create table ta( a int );
Query OK, 0 rows affected (0.05 sec)
mysql> insert into ta values (1),(1),(2);
Query OK, 3 rows affected (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 0
mysql> select * from ta
-> union
-> select * from ta;
+------+
| a |
+------+
| 1 |
| 2 |
+------+
2 rows in set (0.00 sec)
dan de laatste vraag is:
select `from` as from_to
from messages
union distinct
select `to` as from_to
from messages
Merk op dat distinct
is niet verplicht.
Alleen als je een komma-sparate string nodig hebt, is de eerste oplossing nodig:
select distinct GROUP_CONCAT( distinct T.from_to from )
( select `from` as from_to
from messages
union
select `to` as from_to
from messages
) T