Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a simple message feature for my website but I couldn't get distinct datas from 2 columns (**from** column and **to** column)

enter image description here

you see examples datas on the picture

how can I get the return "1,4,23,45,345"?

share|improve this question
Could you please post your query? – Ocaso Protal Jan 2 '12 at 14:16
I need distinct datas in from and to columns – Roth zerg Jan 2 '12 at 14:19
Please take a look here: stackoverflow.com/questions/546804/… – nikadim Jan 2 '12 at 14:19

2 Answers

up vote 7 down vote accepted

You should to union both columns and then filter for distinct values:

select distinct T.from_to from
( select `from` as from_to
  from messages
  union
  select `to` as from_to
  from messages
) T

if you really need all in a comma separate string, use GROUP_CONCAT([DISTINCT] aggregation function.

EDITED:

You should mark as solution Gerald answer. After test union operator and reread mysql union operator documentation, by default, mysql filter for distinct values:

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)

then, the final query is:

  select `from` as from_to
  from messages
  union distinct
  select `to` as from_to
  from messages

Notice that distinct is not mandatory.

Only if you need a comma sparate string the first solution is necessary:

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
share|improve this answer
1  
thank you danihp, you just saved my day :| – Roth zerg Jan 2 '12 at 14:23
You do not need the outer distinct, as UNION selects distinct rows by default. UNION ALL allows for duplicates. – Gerald P. Wright Jan 2 '12 at 14:25
@GeraldP.Wright, yes read updated answer. – danihp Jan 2 '12 at 14:34
select from as ft from messages
union
select to as ft from messages

In MySQL union selects distinct rows by default. You would use UNION ALL to allow for duplicates.

share|improve this answer
yes, this is the solution, commented in my answer +1. – danihp Jan 2 '12 at 14:33
@Rothzerg, please, mark this answer as solution. – danihp Jan 2 '12 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.