Skip to content

Commit d7c7c39

Browse files
committed
add date examples
1 parent 67b7677 commit d7c7c39

File tree

5 files changed

+203
-0
lines changed

5 files changed

+203
-0
lines changed

sql-examples/03_dates/00_date.sql

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/* Output different dates - today, current first day of the month, end of month, first of may 2022 */
2+
3+
SELECT
4+
date('now') as "today",
5+
date('now','start of month') as "start of month",
6+
date('now','start of month','+1 month') as "end of month",
7+
date('2022-05-01') as "first of may 2022"
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/* Output of different time windows with description */
2+
3+
SELECT
4+
'CM' as "period", 'current month' as "description",
5+
date('now','start of month') as "from",
6+
date('now','start of month','+1 month','-1 day') as "till"
7+
8+
UNION ALL
9+
10+
SELECT
11+
'YTM' as "period", 'year to month' as "description",
12+
date('now','start of year') as "from",
13+
date('now','start of month','-1 day') as "till"
14+
15+
UNION ALL
16+
17+
SELECT
18+
'YTD' as "period", 'year to date' as "description",
19+
date('now','start of year') as "from",
20+
date('now','-1 day') as "till"
21+
22+
UNION ALL
23+
24+
SELECT
25+
'MTD' as "period", 'month to date' as "description",
26+
date('now','start of month') as "from",
27+
date('now','-1 day') as "till"
28+
29+
UNION ALL
30+
31+
SELECT
32+
'SMPY' as "period", 'same month previous year' as "description",
33+
date('now','start of month','-1 year') as "from",
34+
date('now','start of month','+1 month','-1 day','-1 year') as "till"
35+
36+
UNION ALL
37+
38+
SELECT
39+
'PM' as "period", 'previous month' as "description",
40+
date('now','start of month','-1 month') as "from",
41+
date('now','start of month','-1 day') as "till"
42+
43+
UNION ALL
44+
45+
SELECT
46+
'PY' as "period", 'previous year' as "description",
47+
date('now','start of year','-1 year') as "from",
48+
date('now','start of year','-1 day') as "till"
49+
50+
UNION ALL
51+
52+
SELECT
53+
'PMPY' as "period", 'previous month in previous year' as "description",
54+
date('now','start of month','-1 month','-1 year') as "from",
55+
date('now','start of month','-1 day','-1 year') as "till"
56+
57+
UNION ALL
58+
59+
SELECT
60+
'365' as "period", 'last 365 days' as "description",
61+
date('now','-366 days') as "from",
62+
date('now','-1 day') as "till";

sql-examples/03_dates/02_calendar.sql

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* create a table with dates from 2 years past till 1 year future */
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 * FROM "calendar"
19+
ORDER BY "date" DESC
20+
LIMIT 0,100;
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/* select number of days and weekdays of each month in current year */
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+
substr('JanFebMarAprMayJunJulAugSepOctNovDec', 1 + 3*strftime('%m', "date"), -3) as "Month",
20+
COUNT(*) as "Days",
21+
COUNT(CASE WHEN "calendar"."dow" < 5 THEN 1 END) as "Weekdays"
22+
FROM "calendar"
23+
WHERE strftime('%Y', "date") = strftime('%Y', date('now'))
24+
GROUP BY strftime('%m', "date")
25+
ORDER BY strftime('%m', "date") ASC;
+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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

Comments
 (0)