SQL
  Home arrow SQL arrow Page 5 - Generating Reports with SQL Date Handling
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
SQL

Generating Reports with SQL Date Handling
By: O'Reilly Media
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 4
    2007-12-27

    Table of Contents:
  • Generating Reports with SQL Date Handling
  • Hacking the Hack
  • HACK 23 Second Tuesday of the Month
  • The Formula
  • Hacking the Hack: The Last Thursday of the Month

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Generating Reports with SQL Date Handling - Hacking the Hack: The Last Thursday of the Month


    (Page 5 of 5 )

    You can use a similar technique to calculate the last Thursday of the month. Just find the first Thursday of next month and subtract seven days.

    The formula for the offset for the first Thursday of the month beginning withmonthdateis:

      (12-DAYOFWEEK(monthdate) ) % 7

    You should subtract from 12 because Thursday is represented by 5 and 5 + 7 = 12.

    The query to get the first day of next month is:

      mysql> SELECT monthdate AS first_day_of_month
          ->       ,DATE_ADD(monthdate,INTERVAL 1 MONTH)
        
    ->             AS first_day_of_next_month
        
    ->   FROM monthdates;  

     

     

     

    first_day_of_month first_day_of_next_month

     

     2007-04-01

    2007-05-01

     

    2007-05-01

     2007-06-01

     

     2007-06-01

     2007-07-01 

     

     

    You can use this result to find the first Thursday of next month and subtract 7 to get the last Thursday of this month:

      mysql> SELECT first_day_of_month
          ->        ,DATE_ADD(first_day_of_next_month
        
    ->                 ,INTERVAL
        
    ->                   ((12 - DAYOFWEEK(first_day_of_next_month)) % 7)
        
    ->                         - 7 DAY) AS last_thursday_of_month
        
    ->   FROM
        
    ->        (SELECT monthdate AS first_day_of_month
        
    ->                ,DATE_ADD(monthdate,INTERVAL 1 MONTH)
        
    ->                            AS first_day_of_next_month
        
    ->             FROM monthdates) t;
       

     

     

     

     first_day_of_month  last_thursday_of_month 

     

     2007-04-01

     2007-04-26

     

     2007-05-01

     2007-05-31

     

     2007-06-01

     2007-06-28

     

     

    See Also

    •  “Generate a Calendar” [Hack #87]

      —Rudy Limeback 


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · This article is an excerpt from the book "SQL Hacks," published by O'Reilly. We hope...
     

    Buy this book now. This article is excerpted from chapter four of the book SQL Hacks, written by Andrew Cumming and Gordon Russell (O'Reilly, 2006; ISBN: 0596527993). Check it out today at your favorite bookstore. Buy this book now.

    SQL ARTICLES

    - Focusing SQL Queries
    - Complex SQL Queries
    - A Close Look at the SQL Query
    - Generating Reports with SQL Date Handling
    - Creating SQL Reports Based on Date Criteria
    - SQL Date Handling and Data Trends
    - Date Handling
    - Introduction to SQL
    - Lies, Damn Lies, Statistics, and SQL







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek