I think the confusion is because it isn&#39;t clear where the inclusive or exclusive property applies.&nbsp; In this case, the query is both inclusive and exclusive, so I&#39;ll try to state the description somewhat technically.&nbsp; <br>
<br>The question regards date ranges in reports, i.e. a range specified by a lower and upper bound.&nbsp; For statistical reports, the DATE is supplied by the user (like YYYY-MM-DD) but compared against a DATETIME field (like YYYY-MM-DD HH:mm:ss).&nbsp; Thus, the behavior is that the lower bound is inclusive, because even the first second of a day sorts to *after* the DATE string by itself.&nbsp; The same principle applies to exclude the upper bound.&nbsp; <br>
<br>Here&#39;s how mysql treats this problem, in concrete terms.&nbsp; I&#39;m using the DATE &quot;2007-12-06&quot; against the DATETIME &quot;2007-12-06 17:25:39&quot;.&nbsp; Examples:<br><br><span style="font-family: courier new,monospace;">mysql&gt; select &quot;2007-12-06&quot; &lt; &quot;2007-12-06 17:25:39&quot; as lower_bound;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">
+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
| lower_bound |</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 | </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
1 row in set (0.00 sec)</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">mysql&gt; select &quot;2007-12-06 17:25:39&quot; &lt; &quot;2007-12-06&quot; as upper_bound;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">| upper_bound |</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0 | </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">+-------------+</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">1 row in set (0.00 sec)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"></span><br style="font-family: courier new,monospace;"><br>NOTE: this applies only to the <b>statistics</b> table and other places where we compare DATE vs DATETIME (or TIMESTAMP).&nbsp; When querying *other* tables and the comparison is DATE vs. DATE, you would expect different behavior.&nbsp; Of course <span style="font-family: courier new,monospace;">&quot;2007-12-06&quot; &gt;&nbsp;&quot;<span style="font-family: courier new,monospace;">2007-12-06</span><span style="font-family: verdana,sans-serif;"><span style="font-family: courier new,monospace;">&quot;</span> would fail.</span></span><span style="font-family: courier new,monospace;"> </span>In date vs. date, the comparisons *should* be &lt;= and &gt;=, but I cannot say that they are. &nbsp;  A lot of the underlying report code has been copied around and I would expect the authors did not adjust accordingly for different behavior that corresponds to different data types.&nbsp; <br>
<br>I think Koha *should* evolve to the point where the date specification is the same regardless of the type of report.&nbsp; Probably both ends should be inclusive, such that the date range <span style="font-family: courier new,monospace;">&quot;<span style="font-family: courier new,monospace;">2007-12-06</span><span style="font-family: verdana,sans-serif;"><span style="font-family: courier new,monospace;">&quot; to </span></span></span><span style="font-family: courier new,monospace;">&quot;<span style="font-family: courier new,monospace;">2007-12-06</span><span style="font-family: verdana,sans-serif;"><span style="font-family: courier new,monospace;">&quot;</span></span></span> (the same day) would result in a one day range.&nbsp; Currently (for statistics), it results in an empty set.&nbsp; This sounds easy but it gets complicated when you get into the upcoming hourly circulation features that will change a lot of the fields in the DB to be fuller types, and the fact that the guided reports writer targets different tables.&nbsp; <br>
<br>But hopefully that settles the question for date ranges against the statistics table.<br><br>--Joe Atzberger<br><br><br><div class="gmail_quote">On Mon, Dec 15, 2008 at 7:33 AM, Nicole Engard <span dir="ltr">&lt;<a href="mailto:nicole.engard@liblime.com">nicole.engard@liblime.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">&gt;From my testing, I think it&#39;s<br>
&gt; Nov 1 to Dec 1. &nbsp;For a daily report it would be Dec 5 to Dec 6 to get stats<br>
&gt; for Dec 5.<br>
<br>
</div>This is right. &nbsp;11/1 - 12/1 will give you the month of November. &nbsp;Did<br>
I use the wrong word (inclusive v. exclusive)?<br>
<div class="Ih2E3d"><br>
---<br>
<br>
Nicole C. Engard<br>
Open Source Evangelist, LibLime<br>
(888) Koha ILS (564-2457) ext. 714<br>
<a href="mailto:nce@liblime.com">nce@liblime.com</a><br>
AIM/Y!/Skype: nengard<br>
<br>
<a href="http://liblime.com" target="_blank">http://liblime.com</a><br>
<a href="http://blogs.liblime.com/open-sesame/" target="_blank">http://blogs.liblime.com/open-sesame/</a><br>
<br>
<br>
<br>
</div><div><div></div><div class="Wj3C7c">On Sun, Dec 14, 2008 at 9:40 AM, Sharon Moreland &lt;<a href="mailto:smoreland@nekls.org">smoreland@nekls.org</a>&gt; wrote:<br>
&gt; Inclusive data for the month of November would be Nov 1 to Dec 1 or Oct 31<br>
&gt; to Dec 1? The examples below are conflicting. &nbsp;From my testing, I think it&#39;s<br>
&gt; Nov 1 to Dec 1. &nbsp;For a daily report it would be Dec 5 to Dec 6 to get stats<br>
&gt; for Dec 5.<br>
&gt;<br>
&gt;<br>
&gt; Sharon<br>
&gt; NExpress Shared Catalog<br>
&gt;<br>
&gt; On Dec 12, 2008, at 5:57 AM, Nicole Engard wrote:<br>
&gt;<br>
&gt;&gt; Last week I updated this document:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://sites.google.com/a/liblime.com/koha-manual/Home/Table-of-Contents/Reports/reports-wizards" target="_blank">http://sites.google.com/a/liblime.com/koha-manual/Home/Table-of-Contents/Reports/reports-wizards</a><br>

&gt;&gt; to include a tip about dates.<br>
&gt;&gt;<br>
&gt;&gt; &quot;TIP: The statistic reports are exclusive, so, if you want a report to<br>
&gt;&gt; show data for the month of November you should pick October 31 to<br>
&gt;&gt; December 1.&quot;<br>
&gt;&gt;<br>
&gt;&gt; So if you want the month of December you should do December 1 to January<br>
&gt;&gt; 1.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ---<br>
&gt;&gt;<br>
&gt;&gt; Nicole C. Engard<br>
&gt;&gt; Open Source Evangelist, LibLime<br>
&gt;&gt; (888) Koha ILS (564-2457) ext. 714<br>
&gt;&gt; <a href="mailto:nce@liblime.com">nce@liblime.com</a><br>
&gt;&gt; AIM/Y!/Skype: nengard<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://liblime.com" target="_blank">http://liblime.com</a><br>
&gt;&gt; <a href="http://blogs.liblime.com/open-sesame/" target="_blank">http://blogs.liblime.com/open-sesame/</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Dec 8, 2008 at 7:36 PM, Kathy Rippel &lt;<a href="mailto:kdr@ckls.org">kdr@ckls.org</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Josh-<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I tried this on Great Bend Public Library&#39;s collection and have a few<br>
&gt;&gt;&gt; observations.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; If the to/from date is the same (12/08 - 12/08), the result is zero.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; So I tried 12/08 - 12/09 and then got a figure.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Kathy<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; At 02:47 AM 12/6/2008, Joshua Ferraro wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hi Katharine,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Fri, Dec 5, 2008 at 6:22 PM, Katharine Dixon<br>
&gt;&gt;&gt;&gt; &lt;<a href="mailto:katharin@ci.salinas.ca.us">katharin@ci.salinas.ca.us</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Hello, I am new to the list so sorry if this has been asked before but<br>
&gt;&gt;&gt;&gt;&gt; does<br>
&gt;&gt;&gt;&gt;&gt; anybody have the SQL for a report that would just give me a total of<br>
&gt;&gt;&gt;&gt;&gt; all<br>
&gt;&gt;&gt;&gt;&gt; items circulated on a certain day. &nbsp;Just the number, no titles or<br>
&gt;&gt;&gt;&gt;&gt; types.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; You can find this out from the Circulation Statistics wizard, located<br>
&gt;&gt;&gt;&gt; in the Reports area.<br>
&gt;&gt;&gt;&gt; The path is /cgi-bin/koha/reports/issues_stats.pl<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Select Period as a row, and specify the dates in question as From/To.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Select Library as a Column<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Run the report and you will get a chart of circulations per branch for<br>
&gt;&gt;&gt;&gt; that date range.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Cheers,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Joshua Ferraro &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SUPPORT FOR OPEN-SOURCE SOFTWARE<br>
&gt;&gt;&gt;&gt; CEO &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; migration, training, maintenance, support<br>
&gt;&gt;&gt;&gt; LibLime &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Featuring Koha Open-Source ILS<br>
&gt;&gt;&gt;&gt; <a href="mailto:jmf@liblime.com">jmf@liblime.com</a> |Full Demos at <a href="http://liblime.com/koha" target="_blank">http://liblime.com/koha</a> |1(888)KohaILS<br>
&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; Koha mailing list<br>
&gt;&gt;&gt;&gt; <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&gt;&gt;&gt;&gt; <a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Kathy Rippel<br>
&gt;&gt;&gt; Dept. Head/Consultant--Resource Sharing and Access ;<br>
&gt;&gt;&gt; Pathfinder Central (Manager)<br>
&gt;&gt;&gt; Central Kansas Library System<br>
&gt;&gt;&gt; 1409 Williams<br>
&gt;&gt;&gt; Great Bend, KS 67530<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; (620-792-4865) phone<br>
&gt;&gt;&gt; (800-362-2642) toll-free, KS<br>
&gt;&gt;&gt; (620-792-5495) fax<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; <a href="mailto:kdr@ckls.org">kdr@ckls.org</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ********************************************************************************************<br>
&gt;&gt;&gt; I&#39;m currently reading: Redesigning the American Lawn, by F. Herbert<br>
&gt;&gt;&gt; Bormann [... et al.]<br>
&gt;&gt;&gt; I&#39;m currently listening to: Xenocide, by Orson Scott Card.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Koha mailing list<br>
&gt;&gt;&gt; <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&gt;&gt;&gt; <a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
&gt;&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Koha mailing list<br>
&gt;&gt; <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&gt;&gt; <a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
Koha mailing list<br>
<a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
<a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
</div></div></blockquote></div><br>