I have the following table (dates) where columns are in date format as defined.
id Column1 Column2
1 [2013-07-12 12:00:00] [2013-07-14 12:00:00]
I want to extract the range like this(the dates between column1 and column2):
2013-07-12 12:00:00
2013-07-13 12:00:00
2013-07-14 12:00:00
How to make it possible?