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:
how to select random unique records on each execution of the SQL Query

I have database of that structure:

id int
image_name varchar(200)
category_id int

There are about 200 records, id is unique, and there are about 20 categories, and my iamges are categorized between them.

Could you help me to get a query, which will give me 10 records with UNIQUE category_ids?

share|improve this question

marked as duplicate by Lukas Eder, dystroy, j0k, KillianDS, Thilo Aug 24 '12 at 9:53

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.

3 Answers

up vote 4 down vote accepted
select DISTINCT(category),id,image_name FROM images 
  WHERE id=
    (FLOOR(RAND() * 
           (SELECT COUNT(*) FROM images )
          )
    );
share|improve this answer
SELECT DISTINCT(category),id,image_name FROM images ORDER BY RAND() LIMIT 10
share|improve this answer
SELECT DISTINCT category_id,id,image_name FROM images ORDER BY RAND() LIMIT 10
share|improve this answer

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