Thanks Bev and Chris! I&#39;ll see what I can work out.<br clear="all">Susan Bennett<br>ILS System Administrator<br>Geauga County Public Library<br>440 286-6811 x 125<br>440 286-7419 FAX<br>
<br><br><div class="gmail_quote">On Thu, May 13, 2010 at 5:05 PM, Chris Cormack <span dir="ltr">&lt;<a href="mailto:chrisc@catalyst.net.nz">chrisc@catalyst.net.nz</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="im">* Church, Beverly (<a href="mailto:bchurch@ptfs.com">bchurch@ptfs.com</a>) wrote:<br>
</div><div class="im">&gt;    Susan,<br>
&gt;<br>
&gt;    I don&#39;t think there is an easy way to include both the &quot;items&quot; and<br>
&gt;    &quot;deleteditems&quot; table in the same query. Since you are using a &quot;left join&quot;<br>
&gt;    in the query, the results should include a few blank values. These blank<br>
&gt;    values represent items without collection codes or deleted items.<br>
&gt;    Bev<br>
<br>
</div>Actually this is where the UNION syntax comes in handy.<br>
You can do something like this<br>
<div class="im"><br>
SELECT items.ccode AS Collection, COUNT( statistics.itemnumber ) AS<br>
Count, Branch AS BRANCH FROM statistics LEFT JOIN items ON<br>
(statistics.itemnumber = items.itemnumber) WHERE statistics.type IN<br>
(&#39;issue&#39;)  AND year(statistics.datetime) = &#39;__YEAR__&#39; and<br>
month(statistics.datetime) = &#39;__MONTH__&#39; GROUP BY branch,items.ccode<br>
</div>UNION<br>
SELECT deleteditems.ccode AS Collection, COUNT( statistics.itemnumber )<br>
AS Count, Branch AS BRANCH FROM statistics LEFT JOIN deleteditems ON<br>
(statistics.itemnumber = deleteditems.itemnumber) WHERE statistics.type<br>
<div class="im">IN (&#39;issue&#39;)  AND year(statistics.datetime) = &#39;__YEAR__&#39; and<br>
</div>month(statistics.datetime) = &#39;__MONTH__&#39; GROUP BY branch, deleteditems.ccode;<br>
<br>
Which will give the union of the 2 queries result sets<br>
<br>
Hope this helps<br>
<br>
Chris<br>
<br>
&gt;<br>
&gt;    * * * *<br>
<div><div></div><div class="h5">&gt;    Beverly Church<br>
&gt;    PTFS Project Manager<br>
&gt;<br>
&gt;    phone: 1-888-564-2457 ext. 717<br>
&gt;    email: <a href="mailto:bchurch@ptfs.com">bchurch@ptfs.com</a><br>
&gt;    skype: beverlychurch<br>
&gt;<br>
&gt;    2010/5/12 Susan Bennett &lt;<a href="mailto:susan.bennett@geaugalibrary.info">susan.bennett@geaugalibrary.info</a>&gt;<br>
&gt;<br>
&gt;      This explains some of the results I&#39;ve been getting for month end circ<br>
&gt;      reports! Any suggestions on how to modify the following SQL to query<br>
&gt;      items and deleteditems? What would the JOIN be?<br>
&gt;<br>
&gt;      SELECT items.ccode AS Collection, COUNT( statistics.itemnumber ) AS<br>
&gt;      Count, Branch AS BRANCH FROM statistics LEFT JOIN items ON<br>
&gt;      (statistics.itemnumber = items.itemnumber) WHERE statistics.type IN<br>
&gt;      (&#39;issue&#39;)  AND year(statistics.datetime) = &#39;__YEAR__&#39; and<br>
&gt;      month(statistics.datetime) = &#39;__MONTH__&#39; GROUP BY branch, items.ccode<br>
&gt;<br>
&gt;      Any help would be appreciation!<br>
&gt;<br>
&gt;      Susan Bennett<br>
&gt;      ILS System Administrator<br>
&gt;      Geauga County Public Library<br>
&gt;      440 286-6811 x 125<br>
&gt;      440 286-7419 FAX<br>
&gt;<br>
&gt;      On Wed, May 12, 2010 at 2:20 PM, Cab Vinton &lt;<a href="mailto:bibliwho@gmail.com">bibliwho@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;        On Wed, May 12, 2010 at 1:58 PM, Owen Leonard &lt;<a href="mailto:oleonard@myacpl.org">oleonard@myacpl.org</a>&gt;<br>
&gt;        wrote:<br>
&gt;<br>
&gt;        &gt; What you&#39;ll need to remember when tracking those statistics is that<br>
&gt;        if<br>
&gt;        &gt; you want to pull information about those deleted items along with<br>
&gt;        the<br>
&gt;        &gt; statistical data (e.g. how many DVDs you circulated in 2006), you&#39;ll<br>
&gt;        &gt; have to query both the items table *and* the deleteditems table.<br>
&gt;<br>
&gt;        Oof. That doesn&#39;t sound like much fun. So we might end up having to<br>
&gt;        modify a slew of different reports.<br>
&gt;<br>
&gt;        Sounds like we&#39;re better off using the WITHDRAWN, LOST, etc. item<br>
&gt;        statuses ...<br>
&gt;<br>
&gt;        Thank you, Owen.<br>
&gt;        Cab Vinton, Director<br>
&gt;        Sanbornton Public Library<br>
&gt;        Sanbornton, NH<br>
&gt;        _______________________________________________<br>
&gt;        Koha mailing list<br>
&gt;        <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&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>
&gt;      Koha mailing list<br>
&gt;      <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&gt;      <a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
<br>
&gt; _______________________________________________<br>
&gt; Koha mailing list<br>
&gt; <a href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a><br>
&gt; <a href="http://lists.katipo.co.nz/mailman/listinfo/koha" target="_blank">http://lists.katipo.co.nz/mailman/listinfo/koha</a><br>
<br>
<br>
</div></div><font color="#888888">--<br>
Chris Cormack<br>
Catalyst IT Ltd.<br>
+64 4 803 2238<br>
PO Box 11-053, Manners St, Wellington 6142, New Zealand<br>
</font></blockquote></div><br>