SQL group by frequency within a date range

后端 未结 4 2061
攒了一身酷
攒了一身酷 2020-12-31 16:44

I have a requirement to write a stored procedure that accepts a start date, end date and a frequency (day, week, month, quarter, year) and outputs a result set based on thos

4条回答
  •  长情又很酷
    2020-12-31 17:26

    The following script represents the output in a unified way: it shows period's start and end dates as well as the total count for the period.

    That has also determined the ways of finding the values to group by. Basically, you can see three distinct patterns: one for the 'day' frequency , another one for 'week' and still another for all the other frequency types.

    The first one is simplest: both PeriodStart and PeriodEnd are just Date.

    For weeks, I'm using a quite well known trick, whereby the first day of week is derived from the given date by subtracting from it a value that is one less than its weekday number. The end of the week is found similarly: we are merely adding 6 to the same expression.

    Months, quarters and years are grouped in the following manner. The integer number of corresponding units between the zero date and the given date is added back to the zero date. That gives us the beginning of the period. The end is found very similarly, only we are adding the number that is one greater than the difference. That produces the beginning of the next period, so we are then subtracting one day, which gives us the correct ending date.

    SELECT
      PeriodStart,
      PeriodEnd,
      Count = SUM(Count)
    FROM (
      SELECT
        PeriodStart = CASE @Frequency
          WHEN 'day'     THEN Date
          WHEN 'week'    THEN DATEADD(DAY, 1 - DATEPART(WEEKDAY, Date), Date)
          WHEN 'month'   THEN DATEADD(MONTH,   DATEDIFF(MONTH,   0, Date), 0)
          WHEN 'quarter' THEN DATEADD(QUARTER, DATEDIFF(QUARTER, 0, Date), 0)
          WHEN 'year'    THEN DATEADD(YEAR,    DATEDIFF(YEAR,    0, Date), 0)
        END,
        PeriodEnd   = CASE @Frequency
          WHEN 'day'     THEN Date
          WHEN 'week'    THEN DATEADD(DAY, 7 - DATEPART(WEEKDAY, Date), Date)
          WHEN 'month'   THEN DATEADD(DAY, -1, DATEADD(MONTH,   DATEDIFF(MONTH,   0, Date) + 1, 0))
          WHEN 'quarter' THEN DATEADD(DAY, -1, DATEADD(QUARTER, DATEDIFF(QUARTER, 0, Date) + 1, 0))
          WHEN 'year'    THEN DATEADD(DAY, -1, DATEADD(YEAR,    DATEDIFF(YEAR,    0, Date) + 1, 0))
        END,
        Count
      FROM atable
      WHERE Date BETWEEN @DateStart AND @DateEnd
    ) s
    GROUP BY
      PeriodStart,
      PeriodEnd
    
    • EXEC spReport '1/1/2011', '12/31/2011', 'day':

      PeriodStart PeriodEnd  Count
      ----------- ---------- -----
      2011-11-15  2011-11-15 6
      2011-12-16  2011-12-16 9
      2011-12-17  2011-12-17 2
      2011-12-18  2011-12-18 5
      
    • EXEC spReport '1/1/2011', '12/31/2011', 'week':

      PeriodStart PeriodEnd  Count
      ----------- ---------- -----
      2011-11-13  2011-11-19 6
      2011-12-11  2011-12-17 11
      2011-12-18  2011-12-24 5
      
    • EXEC spReport '1/1/2011', '12/31/2011', 'month':

      PeriodStart PeriodEnd  Count
      ----------- ---------- -----
      2011-11-01  2011-11-30 6
      2011-12-01  2011-12-31 16
      
    • EXEC spReport '1/1/2011', '12/31/2011', 'quarter':

      PeriodStart PeriodEnd  Count
      ----------- ---------- -----
      2011-10-01  2011-12-31 22
      
    • EXEC spReport '1/1/2011', '12/31/2011', 'year':

      PeriodStart PeriodEnd  Count
      ----------- ---------- -----
      2011-01-01  2011-12-31 22
      

    Note: From MSDN:

    Avoid the use of the sp_ prefix when naming procedures. This prefix is used by SQL Server to designate system procedures. Using the prefix can cause application code to break if there is a system procedure with the same name. For more information, see Designing Stored Procedures (Database Engine).

提交回复
热议问题