i need to do a query in join with all days of the year but in my db there isn't a calendar table. After googl-ing i found generate_series in postgree .. but no such function in mysql. Does exists some function like generate_series for mysql ?

My actual table have something like :

date     qty
1-1-11    3
1-1-11    4
4-1-11    2
6-1-11    5

But my query have to return

1-1-11    7
2-1-11    0
3-1-11    0
4-1-11    2
and so on..

Thanks

link|improve this question

Why can't you do this in your app logic layer? – Shef Jul 29 '11 at 8:30
It's not the "right" solution to do in app logic. It's better, really better to do via sql (if it is possible). If it will not possible.. ok, i will do in my app logic ... – stighy Jul 29 '11 at 8:35
@stighly: Well, you can solve half of the problem on MySQL. That is, you can GROUP BY date and SUM(qty) qty, but I don't recall any solution of the top of my head to add rows for missing sequences. It's better to do it in app logic, if a date has a qty value, show it, else show 0. – Shef Jul 29 '11 at 8:37
Actually, i'm solving it generating an entire calendar table.. from 1-1-2010 (for instance) to 31-12-2020. It works.. but it's not very elegant ... – stighy Jul 29 '11 at 8:47
feedback

1 Answer

up vote 4 down vote accepted

This is how I do it. It creates a range of dates from 2011-01-01 to 2011-12-31:

select 
    date_format(
        adddate('2011-1-1', @num:=@num+1), 
        '%Y-%m-%d'
    ) date
from 
    any_table,    
    (select @num:=-1) num
limit 
    365

The only requirement is that the number of rows in any_table should be greater or equal to the size of the needed range (>= 365 rows in this example). You will most likely use this as a subquery of your whole query, so in your case any_table can be one of the tables you use in that query.

link|improve this answer
Extremely hacky, but works like a charm. I'm totally using it. Way better than other methods I saw. – Alex Weinstein Oct 10 '11 at 0:41
feedback

Your Answer

 
or
required, but never shown

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