How to iterate over a date range in PL/SQL - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T10:26:07Zhttp://stackoverflow.com/feeds/question/987610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987610/how-to-iterate-over-a-date-range-in-pl-sql2How to iterate over a date range in PL/SQLAdam Carr2009-06-12T16:21:38Z2009-09-23T18:43:10Z
<p>I need to write a report that generates summary totals against a table with date ranges for each record.</p>
<pre><code>table data:
option start_date end_date
opt1 6/12/2009 6/19/2009
opt1 6/3/2009 6/13/2009
opt2 6/5/2009 6/6/2009
</code></pre>
<p>What I want out is basically this:</p>
<pre><code>date option count
6/1/2009 opt1 0
6/1/2009 opt2 0
6/2/2009 opt1 0
6/2/2009 opt2 0
6/3/2009 opt1 0
6/3/2009 opt2 1
</code></pre>
<p>I am having a hard time figuring out how to iterate over a date range. I am sure this is some simple cursor that could be created for this but I am at a loss. Preferably in PL/SQL</p>
<p>UPDATE:</p>
<p>I ended up using the example <a href="http://www.adp-gmbh.ch/ora/plsql/date%5Frange.html" rel="nofollow">here</a> to accomplish what I wanted to do. This creates a function that generates a table of dates.</p>
http://stackoverflow.com/questions/987610/how-to-iterate-over-a-date-range-in-pl-sql/987788#9877885Answer by Vincent Malgrat for How to iterate over a date range in PL/SQLVincent Malgrat2009-06-12T16:55:53Z2009-06-12T16:55:53Z<p>Hi Adam,</p>
<p>You will need some sort of calendar to loop through a range of date. I have built one using the <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:40476301944675" rel="nofollow" title="Infinite Dual">connect by level</a> trick. You can then join the calendar with your data (cross join since you want a row even when there is no option for that day):</p>
<pre><code>SQL> WITH calendar AS (
2 SELECT to_date(:begin_date, 'mm/dd/yyyy') + ROWNUM - 1 c_date
3 FROM dual
4 CONNECT BY LEVEL <= to_date(:end_date, 'mm/dd/yyyy')
- to_date(:begin_date, 'mm/dd/yyyy') + 1
5 )
6 SELECT c_date "date", d_option "option", COUNT(one_day)
7 FROM (SELECT c.c_date, d.d_option,
8 CASE
9 WHEN c.c_date BETWEEN d.start_date AND d.end_date THEN
10 1
11 END one_day
12 FROM DATA d, calendar c)
13 GROUP BY c_date, d_option
14 ORDER BY 1,2;
date option COUNT(ONE_DAY)
----------- ------ --------------
01/06/2009 opt1 0
01/06/2009 opt2 0
02/06/2009 opt1 0
02/06/2009 opt2 0
03/06/2009 opt1 1
03/06/2009 opt2 0
04/06/2009 opt1 1
04/06/2009 opt2 0
05/06/2009 opt1 1
05/06/2009 opt2 1
06/06/2009 opt1 1
06/06/2009 opt2 1
12 rows selected
</code></pre>
http://stackoverflow.com/questions/987610/how-to-iterate-over-a-date-range-in-pl-sql/987836#9878360Answer by Steve Broberg for How to iterate over a date range in PL/SQLSteve Broberg2009-06-12T17:05:51Z2009-06-12T18:12:04Z<p>This type of query is best handled if you have a second "utility" table, which you can use for just about any query where you need to convert ranges into specific buckets. The utility table is nothing more than a list of numbers:</p>
<pre><code>CREATE TABLE Iterator (Counter NUMBER);
COUNTER
-------
0
1
2
3
...
100 (or however many rows you want to include)
</code></pre>
<p>IF we assume that you want to display 30 days, e.g.</p>
<pre><code>SELECT TO_DATE('6/1/2009', 'MM/DD/YYYY') + i.counter thedate
, i.My_option
, count(y.My_option)
FROM ( SELECT DISTINCT
i2.Counter
, y.My_option
FROM iterator i2
, YourTable y
WHERE i2.Counter < 5
) i
LEFT OUTER JOIN yourtable y
ON TO_DATE('6/1/2009', 'MM/DD/YYYY') + i.counter
>= y.start_date
AND TO_DATE('6/1/2009', 'MM/DD/YYYY') + i.counter
< y.end_date
AND y.My_option = i.My_option
GROUP BY TO_DATE('6/1/2009', 'MM/DD/YYYY') + i.counter
, i.My_option
ORDER BY 1
, 2;
</code></pre>
<p>The idea is that you create a Cartesian product between your iterator table and your table with the range, then filter out all the cases where your range conditions aren't met. You can use this in many places, and is one of the best examples why it is better to model your data with ranges as opposed to discrete intervals - because you can always convert easily to discrete intervals using this technique.</p>
<p>edit: I really shouldn't use BETWEEN for date range queries - I changed it to >= <</p>
http://stackoverflow.com/questions/987610/how-to-iterate-over-a-date-range-in-pl-sql/1467889#14678890Answer by Sarah Vessels for How to iterate over a date range in PL/SQLSarah Vessels2009-09-23T18:43:10Z2009-09-23T18:43:10Z<p>Just as an addition to the other techniques, one way I iterate over dates is the following:</p>
<pre><code>/* List of days for the past year, starting with today at midnight */
SELECT TRUNC(SYSDATE) + 1 - LEVEL AS today,
TRUNC(SYSDATE) + 2 - LEVEL AS tomorrow
FROM DUAL
CONNECT BY LEVEL <= 365
</code></pre>