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.

Say I have a startdate = '2010/04/01' and an enddate = '2011/02/01'.

How would I set up a query such that I retrieve the following table as a response:

month
2010/04/01
2010/05/01
2010/06/01
2010/07/01
2010/08/01
2010/09/01
2010/10/01
2010/11/01
2010/12/01
2011/01/01
2011/02/01

Note that I'm not too fussed about the format, anything that works will do.

share|improve this question

1 Answer

up vote 4 down vote accepted

PostgreSQL has generate_series() to make that an easy task:

SELECT generate_series('2010-04-01', '2011-02-01', interval '1 month')::date
share|improve this answer
You legend! Thanks – 2unco May 25 '12 at 2:46
+1 for helpful. – Addicted May 25 '12 at 9:37

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.