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

I want to retrieve random rows from table but this rows must be order in category.

select category, 
   (select order_number 
   from orders 
   where order_number in (123,125,128,129,256,263,966,258,264,159,786) 
   order by rand()) 
from orders 
order by category

This is the query I tried. But that retrieves whole data in table.


Worked query ;

SELECT category,order_number FROM (
    SELECT category,order_number 
    from orders 
    where order_number in (`$order_numbers_variable`) 
    order by rand()
) order by category
share|improve this question
How many rows your want among all those numbers? – neeraj Jan 14 at 10:10
It's about 111 row. I mean there are 111 rows. Order_number field is unique. Category field is repeated. So I want to order by category in the same time select random order_number. That is like order in grouped field. – Yasin Yörük Jan 14 at 11:14

1 Answer

up vote 1 down vote accepted

I assume the requirement is: Retrieve 'N' random rows from a table sorted by 'category'.

Lets assume N is 10. If you want to change the number of rows, then change it in the LIMIT clause.

SELECT * FROM (
    SELECT category from orders ORDER BY rand() ASC  LIMIT 10
) AS innerResult 
ORDER BY innerResult.category
share|improve this answer
@Yasin Yörük Please let know if this answer helps. – OMG Jan 14 at 10:38
Thanks friend. Your query is help me to solve my problem. I changed something little in the query. – Yasin Yörük Jan 14 at 11:29
Thanks @Yasin Yörük – OMG Jan 15 at 3:56

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.