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)

you see examples datas on the picture
how can I get the return "1,4,23,45,345"?
|
You should to union both columns and then filter for distinct values:
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:
then, the final query is:
Notice that Only if you need a comma sparate string the first solution is necessary:
|
|||||||||
|
In MySQL union selects distinct rows by default. You would use UNION ALL to allow for duplicates. |
|||
fromandtocolumns – Roth zerg Jan 2 '12 at 14:19