Given this exemplary relation and data

|_id_____|_type____|_name________|_date_______________|
| 1      | 1       | ajshdf      | 2012-02-18 12:35:00
| 2      | 1       | jkhae       | 2012-02-18 12:35:00
| 3      | 1       | dsfad       | 2012-02-18 12:35:00
| 4      | 2       | 3f3ad       | 2012-02-18 12:35:00
| 5      | 2       | gad64       | 2012-02-18 12:35:00
| 6      | 2       | as3da       | 2012-02-18 12:35:00
| 7      | 3       | faf3a       | 2012-02-18 12:35:00
| 8      | 3       | ga3d3       | 2012-02-18 12:35:00
| 9      | 4       | jzd64       | 2012-02-18 12:35:00

What is the best way to achieve a resulset that will distribute the records as evenly as possible, ordered by the types?

What I want is that the result records are ordered in a manner that the newest entries are always on top, but that the types are altered around, so that the result looks something like this:

|_id_____|_type____|_name________|_date_______________|
| 1      | 1       | ajshdf      | 2012-02-18 12:35:00
| 4      | 2       | 3f3ad       | 2012-02-18 12:35:00
| 7      | 3       | faf3a       | 2012-02-18 12:35:00
| 9      | 4       | jzd64       | 2012-02-18 12:35:00
| 2      | 1       | jkhae       | 2012-02-18 12:35:00
| 5      | 2       | gad64       | 2012-02-18 12:35:00
| 8      | 3       | ga3d3       | 2012-02-18 12:35:00
| 3      | 1       | dsfad       | 2012-02-18 12:35:00
| 6      | 2       | as3da       | 2012-02-18 12:35:00
| 7      | 3       | faf3a       | 2012-02-18 12:35:00 

As you see, the type is altered and cycled in the result - 1, 2, 3, 4, 1, 2, 3, 1, 2, 3

link|improve this question

I'm afraid I don't understand the desired order. You do not seem to have "newest entries are always at the top*, regardless of the other constraint of distributed types. I think once you clearly define the order you want, the solution will be clear too. – mkoistinen Feb 18 at 11:54
Ok, I edited the question -- the date field is too specific, I see that now. – Florian Peschka Feb 18 at 12:12
can't it be SELECT * FROM myTable ORDER BY date, type and if you want further SELECT * FROM myTable ORDER BY date, type, name – Fahim Parkar Feb 18 at 14:16
feedback

1 Answer

up vote 0 down vote accepted

Pretty inefficient but I think it will work:

SELECT a.*
FROM 
       TableX AS a
   JOIN 
       TableX AS b
     ON  b.type = a.type
     AND b.id <= a.id 
GROUP BY 
      a.id
ORDER BY
      COUNT(*)
    , a.id
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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