I have a sorting/grouping issue that I'm hoping somebody could add some insight on.

We have a table of stories that have a publish date and an updated date. I'm using Django so it looks like this:

class Story(models.Model):
    pub_date = models.DateTimeField(db_index=True)
    update_date = models.DateTimeField(blank=True, null=True, db_index=True)
    headline = models.CharField(max_length=200)
    ...

We want to display the stories on a paginated page grouped by day. So...

Jan 20
    Story 1
    Story 2

Jan 19
    Story 1
    Story 3

The challenge is that if a story has an update_date it should be displayed twice, once on the pub_date day, and once on the update_day date (e.g. Story 1).

There are 10s of thousands of stories so I can't do it all in python of course, but I don't know of a way to do this query in SQL.

What I have right now is sorting everything by -pub_date and then getting a range of the max and min dates on a given page. I then query for any stories between those dates with an update_date and combine and group them in python. The problem is that the number of items on a page is irregular then.

So I guess my question is this: What is the best way to query a table for a list of items and sort them based on two fields, duplicating an item in the query if it has a value in the second field, and then sorting based on the two fields?

Hope that makes sense...

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

i can only think of "union" being able to do this.

here's an example of what that would look like. not sure how fast or good it is for the database to have this type of query sent to it often though D:

the query assumes your table name is stories, and uses the columns headline, pub_date and update_date. it also assumes that a story that hasn't been updated has the value null in the update_date column.

SELECT      headline,
            the_date,
            DAY(the_date) AS the_day
FROM (
    SELECT      headline,
                pub_date AS the_date
    FROM        stories
    UNION
    SELECT      headline,
                update_date AS the_date
    FROM        stories
    WHERE       update_date IS NOT NULL
) AS publishedandupdated
ORDER BY    the_date DESC;

if you want to add a limit to the query, it should be done last, after the "order by" clause.

link|improve this answer
although, you should probably use "union all". not because it changes what results come back (it will be exactly the same), but because it's apparently a lot faster. this is probably because it's not trying to make any "distinct" checks. i just read that someone had benchmarked union all at 3.5 times faster than union. – davogotland Jan 21 '11 at 0:11
feedback

your question is similar to what I had. I read some items from Facebook walls. I had two dates, one on item creation(user posts the item), one on item retrieval(I read the item from Facebook). I wanted to show items that are posted or retrieved today.

SELECT link,time FROM homeWallItems WHERE 
DATE_SUB(CURDATE(),INTERVAL 1 DAY)<= created 
OR
DATE_SUB(CURDATE(),INTERVAL 1 DAY)<= time
group by time LIMIT 0,30

Edit: I was over optimistic in this sentence: It is wrong.

in this code, instead of CURDATE(), if you use time, then it should work you.

link|improve this answer
feedback

Making some assumptions on the column names, you need UNION ALL to retain duplicates from both parts.

    select headline, actualdate=pub_date
    from story
    where pub_date between /mindate/ and /maxdate/
union all
    select headline, actualdate=update_date
    from story
    where update_date between /mindate/ and /maxdate/
order by actualdate
  • The virtual field actualdate is used to match up the pub_date / update_date as a single column on which to ORDER BY.
  • The ORDER BY in a union-ed statement is applied AFTER the union has been done, so it only needs to appear once.
  • the filter on the date range is applied within each part of the union, to reduce the worktable size (it shouldn't have to pull in all data unnecessarily before applying the filter)
link|improve this answer
this will still lead to the number of items per page being unforeseeable though. it was my understanding that this was an unwanted behavior resulting from the old solution, where a date range was used on both newly written and updated stories. – davogotland Jan 20 '11 at 23:58
What about update_date being NULL? – John Machin Jan 21 '11 at 0:03
@John - What about update_date being NULL? What about it? – Richard aka cyberkiwi Jan 21 '11 at 0:17
doesn't that need to be allowed for in the select statement? – John Machin Jan 21 '11 at 1:21
@John - no, because it gets picked up based on a range on either branch. If it has no pub_date, it shouldn't be there, same for update_date. bear in mind each part of the union contributes independently to the whole, so a record with pub in range,update=null will get shown – Richard aka cyberkiwi Jan 21 '11 at 1:29
feedback

Your Answer

 
or
required, but never shown

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