How to create report with tickets closed at certain date in Trac - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:28:19Z http://stackoverflow.com/feeds/question/585752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/585752/how-to-create-report-with-tickets-closed-at-certain-date-in-trac 2 How to create report with tickets closed at certain date in Trac Josef Sábl 2009-02-25T12:14:56Z 2009-02-25T13:38:13Z <p>I wish to create a report that would list all the tickets that were closed in a certain period of time.</p> <p>The pseudo-code would be like</p> <pre><code>SELECT * FROM tickets WHERE closed AND date_closed = 'january 2009' </code></pre> <p>The part I am unable to resolve is <code>date_closed = 'january 2009'</code>.</p> <p>Is there a way to do it in Trac?</p> <p>I am not interested in particular SQL syntax, I can write the time constrictions myself. What I am not certain about is Trac's db structure.</p> http://stackoverflow.com/questions/585752/how-to-create-report-with-tickets-closed-at-certain-date-in-trac/585843#585843 2 Answer by vartec for How to create report with tickets closed at certain date in Trac vartec 2009-02-25T12:44:00Z 2009-02-25T12:44:00Z <pre><code>SELECT * FROM ticket WHERE status='closed' AND date(changetime,'unixepoch') BETWEEN date('YYYY-MM-DD') /* &lt;- here goes your start date */ AND date('YYYY-MM-DD') /* &lt;- here goes your end date */ </code></pre> <p>If you want a specific month:</p> <pre><code>SELECT * FROM ticket WHERE status='closed' AND date(changetime,'unixepoch') BETWEEN date('2009-01-01','start of month') AND date('2009-01-01','start of month','+1 month','-1 day') </code></pre> <p>Where <code>date('2009-01-01','start of month')</code> is the first day of the month given by date, and <code>date('2009-01-01','start of month','+1 month','-1 day')</code> is the last day of the month.</p> http://stackoverflow.com/questions/585752/how-to-create-report-with-tickets-closed-at-certain-date-in-trac/585882#585882 1 Answer by kmkaplan for How to create report with tickets closed at certain date in Trac kmkaplan 2009-02-25T12:54:21Z 2009-02-25T13:00:13Z <pre><code>SELECT DISTINCT ticket.* FROM ticket, ticket_change WHERE ticket.id = ticket_change.ticket AND ticket_change.field = 'status' AND ticket_change.newvalue = 'closed' AND strftime('%m', ticket_change.time, 'unixepoch') = '01'; </code></pre> <p>If you also know the year, instead of strftime you’d better use an expression like vartec’s suggested:</p> <pre><code>SELECT DISTINCT ticket.* FROM ticket, ticket_change WHERE ticket.id = ticket_change.ticket AND ticket_change.field = 'status' AND ticket_change.newvalue = 'closed' AND date(ticket_change.time,'unixepoch') BETWEEN date('2009-01-01','start of month') AND date('2009-01-01','start of month','+1 month','-1 day') </code></pre>