|
| 1 | +/* combine "timeperiods" example with "calendar" example */ |
| 2 | + |
| 3 | +CREATE TEMPORARY TABLE IF NOT EXISTS calendar ( |
| 4 | + "date" date UNIQUE NOT NULL, |
| 5 | + "dow" INT NOT NULL |
| 6 | +); |
| 7 | + |
| 8 | +INSERT OR ignore INTO "calendar" |
| 9 | +SELECT * FROM ( |
| 10 | + WITH RECURSIVE dates(d) AS ( |
| 11 | + VALUES(date('now','-2 year')) |
| 12 | + UNION ALL |
| 13 | + SELECT date(d, '+1 day') FROM dates WHERE d < date('now','+1 year') |
| 14 | + ) |
| 15 | + SELECT d, (CAST(strftime('%w', d) AS INT) + 6) % 7 AS "dow" FROM dates |
| 16 | +); |
| 17 | + |
| 18 | +SELECT |
| 19 | + "period", |
| 20 | + "description", |
| 21 | + "from", |
| 22 | + "till", |
| 23 | + CAST (JulianDay("till") - JulianDay("from") as Integer) as "days", |
| 24 | + COUNT(CASE WHEN "calendar"."dow" < 5 THEN 1 END) as "weekdays" |
| 25 | +FROM ( |
| 26 | + |
| 27 | +SELECT |
| 28 | + 'CM' as "period", 'current month' as "description", |
| 29 | + date('now','start of month') as "from", |
| 30 | + date('now','start of month','+1 month','-1 day') as "till" |
| 31 | + |
| 32 | +UNION ALL |
| 33 | + |
| 34 | +SELECT |
| 35 | + 'YTM' as "period", 'year to month' as "description", |
| 36 | + date('now','start of year') as "from", |
| 37 | + date('now','start of month','-1 day') as "till" |
| 38 | + |
| 39 | +UNION ALL |
| 40 | + |
| 41 | +SELECT |
| 42 | + 'YTD' as "period", 'year to date' as "description", |
| 43 | + date('now','start of year') as "from", |
| 44 | + date('now','-1 day') as "till" |
| 45 | + |
| 46 | +UNION ALL |
| 47 | + |
| 48 | +SELECT |
| 49 | + 'MTD' as "period", 'month to date' as "description", |
| 50 | + date('now','start of month') as "from", |
| 51 | + date('now','-1 day') as "till" |
| 52 | + |
| 53 | +UNION ALL |
| 54 | + |
| 55 | +SELECT |
| 56 | + 'SMPY' as "period", 'same month previous year' as "description", |
| 57 | + date('now','start of month','-1 year') as "from", |
| 58 | + date('now','start of month','+1 month','-1 day','-1 year') as "till" |
| 59 | + |
| 60 | +UNION ALL |
| 61 | + |
| 62 | +SELECT |
| 63 | + 'PM' as "period", 'previous month' as "description", |
| 64 | + date('now','start of month','-1 month') as "from", |
| 65 | + date('now','start of month','-1 day') as "till" |
| 66 | + |
| 67 | +UNION ALL |
| 68 | + |
| 69 | +SELECT |
| 70 | + 'PY' as "period", 'previous year' as "description", |
| 71 | + date('now','start of year','-1 year') as "from", |
| 72 | + date('now','start of year','-1 day') as "till" |
| 73 | + |
| 74 | +UNION ALL |
| 75 | + |
| 76 | +SELECT |
| 77 | + 'PMPY' as "period", 'previous month in previous year' as "description", |
| 78 | + date('now','start of month','-1 month','-1 year') as "from", |
| 79 | + date('now','start of month','-1 day','-1 year') as "till" |
| 80 | + |
| 81 | +UNION ALL |
| 82 | + |
| 83 | +SELECT |
| 84 | + '365' as "period", 'last 365 days' as "description", |
| 85 | + date('now','-366 days') as "from", |
| 86 | + date('now','-1 day') as "till" |
| 87 | +) x |
| 88 | +LEFT JOIN "calendar" ON "calendar"."date" BETWEEN "x"."from" AND "x"."till" |
| 89 | +GROUP BY "period", "description", "from", "till"; |
0 commit comments