Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
MySQL: Select only unique values from a column

iam getting values from mysql table category and column parent. Parent contain values like 1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4

I want to skip the values if they are repeating. So i want the output as 1,2,3,4

Please help me..my code is not woking.

$new_cat1 = $cat1;
    foreach($cat1 as $category){
        $query="SELECT parent FROM categories where id='$category'";
        $result = mysql_query($query);  
        $line = mysql_fetch_assoc($result);
        array_push($new_cat1,$line['parent']);
        if (in_array("1", $new_cat1)) {
        continue;
        }
    }
share|improve this question

marked as duplicate by Michael Berkowski, tereško, Kjuly, Waynn Lue, Lucifer Oct 17 '12 at 1:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

add DISTINCT in your query so it will select only the unique values.

SELECT DISTINCT parent FROM categories where id='$category'
share|improve this answer
1  
Faster than a bullet... – Ofir Baruch Oct 16 '12 at 14:16
no, still not working – django Oct 16 '12 at 14:21
how can push that particular distinct parent into array – django Oct 16 '12 at 14:23
what do you mean by not working? – JW 웃 Oct 16 '12 at 14:32

There is also a parallel way of doing this :

SELECT DISTINCT parent FROM categories where id='$category' group by parent
share|improve this answer

Change query to that : SELECT parent FROM categories where id='$category' GROUP BY parent

Regards.

share|improve this answer
SELECT parent FROM categories where id='$category'
group by parent 
share|improve this answer

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